무엇입니까극점 계산기?
- 간단한 설명:방향을 변경하기 전에 기울기가 완전히 0으로 평평해지는 그래프의 위치입니다. 그것은 언덕 꼭대기나 그릇 바닥처럼 보입니다.
- 삼차 방정식에서 이것이 중요한 이유:전환점을 알면 경제학의 이익 극대화, 물리학의 궤적 한계, 곡선의 일반적인 "불퉁함"을 이해하는 데 도움이 됩니다.
실수근과 복소수근, Cardano 방법 단계, 3차 그래프 및 작업 예제를 갖춘 전용 3차 방정식 솔버입니다.
극점 계산기
위의 다항식 계수를 입력하고 "극점 찾기"을 클릭하여 결과를 확인하세요.Turning points (also called local extrema) are locations where a cubic function changes direction — from increasing to decreasing (local maximum) or from decreasing to increasing (local minimum). They are found by solving the first derivative equation: f'(x) = 3ax² + 2bx + c = 0, which is a quadratic in x.
The discriminant of the first derivative, D = 4b² − 12ac, determines whether turning points exist. When D > 0, the cubic has two turning points (one max, one min). When D = 0, there is a single horizontal inflection (a saddle point). When D < 0, the cubic is monotonic with no turning points — it always increases or always decreases.
Turning points are critical for optimization, graphing, and understanding function behavior. The vertical distance between turning points determines the “amplitude” of the cubic's wiggle, and their x-coordinates define the boundaries between increasing and decreasing intervals. Engineers use them to find maximum stress, peak voltage, or optimal production levels.
Finding the local maximum of a cubic revenue model reveals the optimal production quantity for maximum profit.
Peak stress and deflection in structural components often occur at turning points of the governing cubic equation.
Population models with cubic dynamics use turning points to identify carrying capacities and extinction thresholds.
Turning points are where f'(x)=0 (direction changes). Inflection points are where f''(x)=0 (concavity changes). They are different.
When 4b² − 12ac is negative, the cubic is monotonic. Don't try to force turning points that don't exist.
Finding the x-values isn't enough. Use the second derivative test: f''(x) > 0 means minimum, f''(x) < 0 means maximum.
| Derivative | f'(x) = 3ax² + 2bx + c = 0 |
| D > 0 | Two turning points (1 max + 1 min) |
| D = 0 | Saddle point (horizontal inflection) |
| D < 0 | No turning points (monotonic) |
| Classification | Use f''(x) to identify max vs. min |
아니요, 삼차방정식은 일반적으로 정확히 두 개의 전환점이 있거나 전혀 없습니다(엄격히 증가하거나 감소합니다).
전환점이 정확히 x축에 있는 경우 방정식은 해당 좌표에 "반복" 또는 "이중" 근을 갖습니다.
아니요, 하지만 기하학을 시각화하는 데 큰 도움이 됩니다.
1차 도함수의 판별식(2차식)이 이를 결정합니다. 4b² - 12ac > 0이면 3차에는 두 개의 전환점이 있습니다. 그렇지 않으면 아무 것도 없습니다.
예. 두 전환점이 모두 x축 위에 있으면(또는 둘 다 아래에 있으면) 삼차에는 실수 근이 하나만 있습니다. 복소근이 나타나는 경우가 바로 이것이다.