Answered step by step
Verified Expert Solution
Question
1 Approved Answer
MUST BE DONE IN C++ MUST BE DONE IN C++ Assignment Solutions to the quadratic equation Ax2 +Bx + C = 0 may be calculated
MUST BE DONE IN C++
MUST BE DONE IN C++
Assignment Solutions to the quadratic equation Ax2 +Bx + C = 0 may be calculated using the quadratic formulas : -B + VB2 - 4AC x = 2A or -B-VB2 4AC 2A These formulas may be used, of course, only if the leading coefficient, A, is not zero. The number and type of solutions is determined by the value of the expression under the radical sign, B2 - 4AC, known as the discriminant : value of number of kind of discriminant solutions solutions positive 2 real zero 1 real negative 2 imaginary Your job is to write a program which will read the coefficients of a quadratic equation and, if the leading coefficient is non-zero, calculate and report the solutions. Since programming languages does not provide the imaginary type, you'll have to take appropriate steps to give imaginary results in the form shown. Just remember that every imaginary number is really determined by a pair of real numbers. Several sample runs appear on the next page; user input appears in bold type. The "*I" which appears in the output is simply written where necessary; the actual calculations involve only real results. You are not required to duplicate this output, but you should provide all information shown. Page 2 Your output, for running the program several times, may appear something like this. John Smith - This program will provide solutions for an equation of the form A*x^2 + B*x + C = 0, where A, B and C are integers, and A is not equal to zero. Enter A, B and C : 2 -5 -3 The two real solutions are X = 3.0000E+00 and x = -5.0000E-01 Press ENTER to terminate John Smith - This program will provide solutions for an equation of the form A*x^2 + B*x + C = 0, where A, B and C are integers, and A is not equal to zero. Enter A, B and C: 2-5 4 The two imaginary solutions are X = 1.2500E+00 + (6.6144E-01) *I and 1.2500E+00 - (6.6144E-01) I Press ENTER to terminate John Smith - This program will provide solutions for an equation of the form A*x^2 + B*x + C = 0, where A, B and C are integers, and A is not equal to zero. Enter A, B and C: 1 -8 16 The one real solution is 4.0000E+00 Press ENTER to terminate John Smith - This program will provide solutions for an equation of the form A*x^2 + B*x + C = 0, where A, B and C are integers, and A is not equal to zero. Enter A, B and C : 038 No solutions will be calculated for a leading coefficient of O! Press ENTER to terminateStep 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