7) Solving quadratic equation program Let's consider the general formula of a quadratic equation : ax? + bx +c = 0 Example in the equation : x? + 3x + 8 = 0 a=1, b=3 and c=8 where a, b and c are real numbers and a # 0 To solve the equation a discriminant D is calculated as: D = b2-4ac If D is less that 0: there is no solution If D is equal to 0: there is one solution b 2a If D is greater that 0: there is two solutions x1 and x2 -b + VD x1. 2a -b-VD x2 = 2a

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter1: Fundamentals Of C++ Programming
Section1.3: Preliminary Three: Software Development
Problem 1E: (Electrical eng.) You’ve been asked to write a C++ program to calculate the total resistance of a...
icon
Related questions
Question
بايثون
7) Solving quadratic equation program
Let's consider the general formula of a quadratic equation :
ax? + bx +c = 0
Example in the equation : x2 + 3x + 8 = 0 a=1, b=3 and c=8
where a, b and care real numbers and a + 0
To solve the equation a discriminant D is calculated as :
D = b2 – 4ac
If D is less that 0: there is no solution
If D is equal to 0: there is one solution
b
x =
2a
If D is greater that 0: there is two solutions x1 and x2
-b + VD
x1
2a
-b - VD
x2 =
2a
Transcribed Image Text:7) Solving quadratic equation program Let's consider the general formula of a quadratic equation : ax? + bx +c = 0 Example in the equation : x2 + 3x + 8 = 0 a=1, b=3 and c=8 where a, b and care real numbers and a + 0 To solve the equation a discriminant D is calculated as : D = b2 – 4ac If D is less that 0: there is no solution If D is equal to 0: there is one solution b x = 2a If D is greater that 0: there is two solutions x1 and x2 -b + VD x1 2a -b - VD x2 = 2a
Expert Solution
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Web Page
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr