Quadratic equation & Minus B

10 vues (au cours des 30 derniers jours)
Fergal Ahern
Fergal Ahern le 15 Mai 2019
How do I solve the quadratic equation ax^2+bx+c=0 using the minus b formula, x=-b+- sqrt b^2-4ac/2a on MATLAB
Thank you
  3 commentaires
Fergal Ahern
Fergal Ahern le 15 Mai 2019
Modifié(e) : Fergal Ahern le 15 Mai 2019
Geoff - The program must read in coefficients a,b and c from the keyboard and then calculate the roots of the equation. Do you know how I would verify that real roots are generated?
James Tursa
James Tursa le 15 Mai 2019
To read coefficients from the keyboard, you could use the input function
To see if a number is real, you could use the isreal function

Connectez-vous pour commenter.

Réponse acceptée

kirti singh
kirti singh le 16 Mai 2019
The following example code snippet works for accepting the coefficients a,b and c and calculating the roots and finding if they are real or not:
a1 = 'Enter value of a ';
a = input(a1)
b1= 'Enter value of b ';
b = input(b1)
c1= 'Enter value of c ';
c = input(c1)
x1 = (-b + sqrt(b^2 - (4 * a * c))) / (2 * a);
x2 = (-b - sqrt(b^2 - (4 * a * c))) / (2 * a);
t1=isreal(x1);
t2=isreal(x2);
  1 commentaire
James Tursa
James Tursa le 16 Mai 2019
Please don't post complete solutions to homework problems.

Connectez-vous pour commenter.

Plus de réponses (1)

Pavi thra
Pavi thra le 28 Oct 2020
a1 = 'Enter value of a ';
a = input(a1)
b1= 'Enter value of b ';
b = input(b1)
c1= 'Enter value of c ';
c = input(c1)
x1 = (-b + sqrt(b^2 - (4 * a * c))) / (2 * a);
x2 = (-b - sqrt(b^2 - (4 * a * c))) / (2 * a);
t1=isreal(x1);
t2=isreal(x2);

Catégories

En savoir plus sur Physics dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by