무엇입니까유리근 정리 계산기?
- 간단한 설명:다항식 방정식에 "좋은" 분수 또는 정수 근이 있는 경우 해당 근은 상수 항의 인수를 최고 계수의 인수로 나누어 형성되어야 함을 명시하는 수학적 규칙입니다.
- 삼차 방정식에서 이것이 중요한 이유:이 규칙이 없으면 손으로 삼차 방정식의 첫 번째 근을 찾는 것은 순전히 운이 좋은 게임입니다. 이는 무한한 가능성을 작고 테스트 가능한 메뉴로 좁힙니다.
실수근과 복소수근, Cardano 방법 단계, 3차 그래프 및 작업 예제를 갖춘 전용 3차 방정식 솔버입니다.
유리근 정리 계산기
위의 다항식 계수를 입력하고 "유리근 후보 찾기"을 클릭하여 결과를 확인하세요.The Rational Root Theorem provides a systematic way to find all possible rational roots of a polynomial with integer coefficients. For a cubic ax³ + bx² + cx + d = 0, any rational root p/q must satisfy: p divides d (the constant term) and q divides a (the leading coefficient). This generates a finite list of candidates to test.
The theorem does NOT guarantee that rational roots exist — it only narrows the search space. You must test each candidate by substituting it into the polynomial (or using synthetic division). If f(p/q) = 0, you have found a root. Once one root is confirmed, synthetic division reduces the cubic to a quadratic, which the quadratic formula solves completely.
The power of this theorem lies in its efficiency: instead of guessing randomly, you have a guaranteed finite list. For example, if a = 2 and d = 12, the candidates are ±1, ±2, ±3, ±4, ±6, ±12, ±1/2, ±3/2 — at most 16 values to check. This structured approach is the standard first step in polynomial solving before resorting to Cardano's method.
The theorem is always the first tool applied when solving cubics with integer coefficients — before Cardano or numerical methods.
Most algebra and precalculus exams feature problems solvable by the Rational Root Theorem, making it essential test knowledge.
Computer algebra systems use the Rational Root Theorem as the initial step in their polynomial factorization algorithms.
Every candidate ±p/q has both positive and negative versions. Testing only positives misses negative roots.
Candidates like 2/4 and 1/2 are the same root. Reduce fractions to avoid redundant testing.
p divides the CONSTANT term d, and q divides the LEADING coefficient a. Swapping them generates wrong candidates.
| Rule | p divides d, q divides a |
| Candidate Form | ±p/q (all combinations) |
| Testing Method | Substitute or synthetic division |
| Limitation | Only finds rational roots, not irrational |
| After Finding Root | Use synthetic division to reduce degree |
아니요, 단지 *후보자*의 "후보 목록"만 제공할 뿐입니다. 어느 것이 0인지 확인하려면 이를 테스트해야 합니다.
이는 방정식에 무리수 근(지저분한 소수 또는 제곱근)이 있으며 Cardano와 같은 고급 공식을 사용하여 풀어야 함을 의미합니다.
아니요, 이 정리는 놀랍게도 선도항과 상수 항에만 의존합니다.
후보의 수는 최고차 계수와 상수 항이 몇 개의 요인을 가지고 있는지에 따라 달라집니다. 요인이 많은 숫자가 클수록 후보 목록이 길어집니다.
아니요. 유리근 정리는 잠재적 유리근(정수 또는 분수)만을 식별합니다. √2와 같은 무리수 근에는 다른 방법이 필요합니다.