Question: Overview Write a program that solves quadratic equations. Description Write a program that solves for x in a quadratic equation of the form alt text

Overview
Write a program that solves quadratic equations.
Description
Write a program that solves for x in a quadratic equation of the form
alt text
This is done by plugging in the values of a, b, and c into the Quadratic Formulas, where a, b, and c are integers:
alt text
Notice that there are two formulas. This will calculate two different x values.
You will need to ask the user for the values of a, b, and c, using the example prompts as shown below.
Hint 1: You can perform a square root operation by raising to the 0.5 power. For instance:
(10*x)**0.5
Will multiply x by 10 and take the square root of the result.
Hint 2: If you are getting incorrect numbers, check to make sure you are using parentheses correctly!
Hint 3: Dont be afraid to create intermediate variables to make your code more understandable. Remember, fewest lines of code is not a goal you should strive for. Dont try to do more than one thing on each line of code! It just makes for confusing code thats hard to read.
Hint 4: If you are having spacing issues, note that your input prompts must be exactly as shown in the example below, and end with a colon followed by a space and a newline. (The newline character in Python is
)
Note: Do not enter 0 as a value for a, since division by 0 is illegal and the quadratic formula is only defined when a is not 0.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!