이차방정식 풀이기
수식
ax^2 + bx + c = 0
입력
| a (x²의 계수) | 1 |
|---|---|
| b (x의 계수) | -3 |
| c (상수항) | 2 |
그래프
이차방정식 풀이기
입력
ax^2 + bx + c = 0
결과
값을 입력하면 계산 결과가 표시됩니다.
실근
\begin{aligned} D &= b^2 - 4ac \\ &= \left(-3\right)^{2} - 4\left(1\right)\left(2\right) \\ &= ? \end{aligned}
\begin{aligned} x_1 &= \dfrac{-b + \sqrt{D}}{2a} \\ &= \dfrac{-\left(-3\right) + \sqrt{?}}{2\left(1\right)} \\ &= ? \end{aligned}
\begin{aligned} x_2 &= \dfrac{-b - \sqrt{D}}{2a} \\ &= \dfrac{-\left(-3\right) - \sqrt{?}}{2\left(1\right)} \\ &= ? \end{aligned}