Question

1. Solve the quadratic equation ax**2 + bx + c = 0 Please solve this on...

1. Solve the quadratic equation ax**2 + bx + c = 0
Please solve this on python.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

import cmath
a = int(input("Enter the value of a: "))
b = int(input("Enter the value of b: "))
c = int(input("Enter the value of c: "))
d = (b**2) - (4*a*c)
root1 = (-b-cmath.sqrt(d))/(2*a)
root2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(root1,root2))

Add a comment
Know the answer?
Add Answer to:
1. Solve the quadratic equation ax**2 + bx + c = 0 Please solve this on...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • In Python. The two roots of a quadratic equation ax^2 + bx + c = 0...

    In Python. The two roots of a quadratic equation ax^2 + bx + c = 0 can be obtained using the following formula: r1 = (-b + sqrt(b^2 - 4ac) / (2a) and r2 = (-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...

  • Can a quadratic equation aX^2 + bX + c = 0, where a, b, and c...

    Can a quadratic equation aX^2 + bX + c = 0, where a, b, and c are rationals, has one rational solution and one irrational solution? Prove or disprove with justification.

  • C++ The roots of the quadratic equation ax² + bx + c = 0, a ≠...

    C++ The roots of the quadratic equation ax² + bx + c = 0, a ≠ 0 are given by the following formula: In this formula, the term b² - 4ac is called the discriminant. If b² - 4ac = 0, then the equation has a single (repeated) root. If b² - 4ac > 0, the equation has two real roots. If b² - 4ac < 0, the equation has two complex roots. Instructions Write a program that prompts the...

  • Use Python Programming. Design a class named Quadratic Equation for a quadratic equation ax + bx+c...

    Use Python Programming. Design a class named Quadratic Equation for a quadratic equation ax + bx+c 0. The class contains: • The data fields a, b, and c that represent three coefficients. . An initializer for the arguments for a, b, and c. • Three getter methods for a, b, and c. • A method named get Discriminant() that returns the discriminant, which is b- 4ac The methods named getRoot 1() and getRoot 2() for returning the two roots of...

  • algebra 2 Solving the quadratic equation using the quadratic formula ax²+bx+c 01 x= -htb² - 4ac...

    algebra 2 Solving the quadratic equation using the quadratic formula ax²+bx+c 01 x= -htb² - 4ac Ex3 - 2x² +3 x =4-15 X X - 2x²-x =-15 +15 +15 - 2x2-x+15= 0 A = -2 D- C= 15

  • please answer this question with python. Write a program to solve the quadratic equation ax^2 +...

    please answer this question with python. Write a program to solve the quadratic equation ax^2 + bx + c = 0 using the standard quadratic formula x = -b plusminus Squareroot b^2 - 4ac/2a or the alternative formula x = 2c/-b Squareroot b^2 - 4ac. Your program should accept values for the coefficients a, b, and c as input and produce the two roots of the equation as output. Your program should detect when the roots are imaginary, but need...

  • A quadratic equation is generally represented as, ax^2 + bx + c The root(s) of the...

    A quadratic equation is generally represented as, ax^2 + bx + c The root(s) of the above quadratic equation is computed using the following formula, root1 = (-b + sqrt(D))/ 2a root2 = (-b - sqrt(D))/2a Where D is the discriminant of the quadratic equation and is computed as, D = b^2 - 4ac Given the value of D, the roots of a quadratic equation can be categorized as follows, D > 0 : Two distinct real roots D =...

  • Complete 1. Create a function to solve the Quadratic Formula as know as ax +bx+cwit solution...

    Complete 1. Create a function to solve the Quadratic Formula as know as ax +bx+cwit solution is 2a The function must have only 3 reference parameters which are the coefficient of the quadratic equation a, b and c, at the end the function must return the real value of x. If a-0, or there is a negative root square obtained, the function must sent a message error to the user The coefficient of it can't be equal zero" or "Negative...

  • Java Programming Question 4 (10 points): Solutions for a quadratic equation ax(squared)+bx+c= 0. where a does...

    Java Programming Question 4 (10 points): Solutions for a quadratic equation ax(squared)+bx+c= 0. where a does not equal zero are as follows. r1=( −b+√b(squared)−4ac)/2a r2=(−b−√b(squared)−4ac)/2a if b(squared)−4ac <0, equation doesn’t have real roots. If it is 0 there is one root(r1=r2). Write a Java program to read a,b and c from keyboard and find the roots, if they exist. Note: You need to have a method that takes 3 real values as arguments

  • Recall the quadratic equation ax2​ ​+ bx + c = 0. Prove that there does not...

    Recall the quadratic equation ax2​ ​+ bx + c = 0. Prove that there does not exist any integer solution to this equation if a, b, and c are all odd integers. (No integer solution means that there does not exist any integer x that satisfies the equation ax2​ ​+ bx + c = 0).

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT