Question: Python only (Algebra: quadratic equations ) Design a class named QuadraticEquation for a quadratic equation ax 2 + bx + x = 0. The class
Python only
(Algebra: quadratic equations) Design a class named QuadraticEquation for a quadratic equation ax2 + bx+ x = 0. The class contains:
The private data fields a, b, and c that represent three coefficients.
A constructor for the arguments for a, b, and c.
Three get methods for a, b, and c.
A method named getDiscriminant() that returns the discriminant, which is b^2 - 4ac.
These methods are useful only if the discriminant is nonnegative. Let these methods return 0 if the discriminant is negative.
Draw the UML diagram for the class, and then implement the class. Write a test 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 the two roots. If the discriminant is 0, display the one root. Otherwise, display The equation has no roots. See Exercise 4.1 for sample runs.


*7.6 (Algebra: quadratic equations) Design a class named QuadraticEquation for a quadratic equation ax2 + bx + x = 0. The class contains: The private data fields a, b, and c that represent three coefficients A constructor for the arguments for a, b, and c. Three get methods for a, b, and c. A method named getDiscriminant O that returns the discriminant, which is b-4ac. The methods named getRoot 10 and getRoot2 for returning the two roots of the equation using these formulas: 2 - 4ac and 2 24ac 2a These methods are useful only if the discriminant is nonnegative. Let these meth ods return 0 if the discriminant is negative. Draw the UML diagram for the class, and then implement the class. Write a test 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 the two roots. If the discriminant is 0, display the one root. Otherwise, display "The equation has no roots." See Exercise 4,1 for sample runs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
