Question
(Algebra: solve quadratic equations) The two roots of a quadratic equation, for example, , can be obtained using the following formula: r1 = (-b +
(Algebra: solve quadratic equations)
The two roots of a quadratic equation, for example, , can be obtained using the following formula:
r1 = (-b + sqrt(b^2 - 4ac) / (2a) and r1 = (-b - sqrt(b^2 - 4ac) / (2a)
b^2 - 4ac is called the discriminant of the quadratic equation. If it is positive, the equation has two real roots. If it is zero, the equation has one root. If it is negative, the equation has no real roots.
Write a program that prompts the user to enter values for a, b, and c and displays the result based on the discriminant.
If the discriminant is positive, display two roots.
If the discriminant is 0, display one root.
Otherwise, display The equation has no real roots.
Sample Run 1
Enter a: 1.0
Enter b: 3
Enter c: 1
The roots are -0.3819660112501051 and -2.618033988749895
Sample Run 2
Enter a: 1
Enter b: 2.0
Enter c: 1
The root is -1.0
Sample Run 3
Enter a: 1
Enter b: 2
Enter c: 3
The equation has no real roots.
In python.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started