Cubic Equation Solver logo
Cubic Equation Solver

유리근 정리 계산기

실수근과 복소수근, Cardano 방법 단계, 3차 그래프 및 작업 예제를 갖춘 전용 3차 방정식 솔버입니다.

유리근 정리 계산기

정수 계수를 입력하여 ±p/q 정리를 사용한 모든 가능한 유리근 후보를 생성하세요.

정수 계수 — ax³ + bx² + cx + d = 0

유리근 정리 계산기

위의 다항식 계수를 입력하고 "유리근 후보 찾기"을 클릭하여 결과를 확인하세요.
문제를 풀면 그래프가 여기에 표시됩니다.

무엇입니까유리근 정리 계산기?

  • 간단한 설명:다항식 방정식에 "좋은" 분수 또는 정수 근이 있는 경우 해당 근은 상수 항의 인수를 최고 계수의 인수로 나누어 형성되어야 함을 명시하는 수학적 규칙입니다.
  • 삼차 방정식에서 이것이 중요한 이유:이 규칙이 없으면 손으로 삼차 방정식의 첫 번째 근을 찾는 것은 순전히 운이 좋은 게임입니다. 이는 무한한 가능성을 작고 테스트 가능한 메뉴로 좁힙니다.
공식 / 방법
  • 공식:가능한 뿌리\pm \frac{피}{큐}
  • 변수 설명: * : 상수항의 모든 정수 인수(끝에 숫자). *: 최고차 계수의 모든 정수 인수에이(첨부된 번호는).

사용 방법

  1. 큐빅에 정수 계수(소수 없음)가 있는지 확인하세요.
  2. 첫 번째 계수를 입력하세요.에이그리고 마지막 학기.
  3. "합리적인 뿌리 찾기"를 누르십시오.
  4. 생성된 모든 잠재적 테스트 후보 목록을 검토합니다.

주요 특징

  • 가능한 조합을 즉시 필터링합니다.
  • 특정 소수 청크를 인수분해하는 것과 관련된 수학 오류를 제거합니다.
  • 가장 단순한 정수부터 복소수까지 출력을 정렬합니다.
  • 분할 작업을 수행하기 전 완벽한 가이드입니다.
📈 시각적 다이어그램
유리근 정리: p/q 후보 d의 인수(상수) ±1, ±2, ±3, ±4, ±6, ±12 (주요)의 요인 ±1, ±2 후보자: ±1, ±2, ±3, ±4, ±6, ±12, ±½, ±3/2

예제 개념

을 위한2x³ - 5x² - 4x + 3 = 0: 요인3(p): 1, 3. 요인2(q): 1, 2. 이 도구는 다음 조합을 출력합니다.\pm 1, \pm 3, \pm 1/2, \pm 3/2.

대화형 심층 분석

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.

🎯 실제 응용 분야
🔎

First-Line Root Finding

The theorem is always the first tool applied when solving cubics with integer coefficients — before Cardano or numerical methods.

🎓

Exam Preparation

Most algebra and precalculus exams feature problems solvable by the Rational Root Theorem, making it essential test knowledge.

💻

Algorithm Design

Computer algebra systems use the Rational Root Theorem as the initial step in their polynomial factorization algorithms.

⚠ 피해야 할 일반적인 실수

1. Forgetting negative candidates

Every candidate ±p/q has both positive and negative versions. Testing only positives misses negative roots.

2. Not reducing fractions

Candidates like 2/4 and 1/2 are the same root. Reduce fractions to avoid redundant testing.

3. Confusing which divides which

p divides the CONSTANT term d, and q divides the LEADING coefficient a. Swapping them generates wrong candidates.

📋 빠른 참조표
Rulep divides d, q divides a
Candidate Form±p/q (all combinations)
Testing MethodSubstitute or synthetic division
LimitationOnly finds rational roots, not irrational
After Finding RootUse synthetic division to reduce degree

자주 묻는 질문

이것이 실제 루트를 제공합니까?

아니요, 단지 *후보자*의 "후보 목록"만 제공할 뿐입니다. 어느 것이 0인지 확인하려면 이를 테스트해야 합니다.

목록에 있는 숫자 중 하나도 작동하지 않으면 어떻게 되나요?

이는 방정식에 무리수 근(지저분한 소수 또는 제곱근)이 있으며 Cardano와 같은 고급 공식을 사용하여 풀어야 함을 의미합니다.

중간항을 입력해야 하나요?

아니요, 이 정리는 놀랍게도 선도항과 상수 항에만 의존합니다.

때때로 목록에 후보자가 많은 이유는 무엇입니까?

후보의 수는 최고차 계수와 상수 항이 몇 개의 요인을 가지고 있는지에 따라 달라집니다. 요인이 많은 숫자가 클수록 후보 목록이 길어집니다.

이 정리가 비합리적인 뿌리를 찾을 수 있습니까?

아니요. 유리근 정리는 잠재적 유리근(정수 또는 분수)만을 식별합니다. √2와 같은 무리수 근에는 다른 방법이 필요합니다.