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 : You can perform a square root operation by raising to the power. For instance:
x
Will multiply x by and take the square root of the result.
Hint : If you are getting incorrect numbers, check to make sure you are using parentheses correctly!
Hint : 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 : 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 as a value for a since division by is illegal and the quadratic formula is only defined when a is not
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
