Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this code so far but every time i run and put the three numbers in a get the roots are NaN can some one please help or point me to where i went wrong.

 import java.util.Scanner;

 class Quadratic {
   public static void main(String[] args) {

   System.out.println("Enter three coefficients");
   Scanner sc = new Scanner(System.in);
   double a = sc.nextDouble();
   double b = sc.nextDouble();
   double c = sc.nextDouble();
   double root1= (-b + Math.sqrt( b*b - 4*a*c ) )/ (2*a);
   double root2= (-b - Math.sqrt( b*b - 4*a*c ) )/ (2*a);
   System.out.println("The roots1 are: "+ root1);
   System.out.println("The roots2 are: " + root2);


     } 
   }
share|improve this question
Are the discriminants negative for the test cases that you're running? – Jack Maney Jan 17 at 23:03
2  
Maybe if you print a, b and c out before doing the calculation, it will give you a clue or at least rule out some possible problems. – Lee Meador Jan 17 at 23:04
It is suppose to be positive discriminant – Justin Nygaard Jan 17 at 23:06
Is it? What if a, b, and c are each equal to 1? – Jack Maney Jan 17 at 23:07

1 Answer

up vote 4 down vote accepted

You have to remember that not every quadratic equation has roots that can be expressed in terms of real numbers. More specifically, if b*b - 4*a*c < 0, then the roots will have an imaginary part and NaN will be returned, since Math.sqrt of a negative number returns NaN, as specified in the documentation. This works for coefficients such that b*b - 4*a*c >= 0, however:

Enter three coefficients
1
5
6
The roots1 are: -2.0
The roots2 are: -3.0

If you wanted to account for non-real roots as well, you could do something like

double d = (b * b - 4 * a * c);
double re = -b / (2 * a);

if (d >= 0) {  // i.e. "if roots are real"
    System.out.println(Math.sqrt(d) / (2 * a) + re);
    System.out.println(-Math.sqrt(d) / (2 * a) + re);
} else {
    System.out.println(re + " + " + (Math.sqrt(-d) / (2 * a)) + "i");
    System.out.println(re + " - " + (Math.sqrt(-d) / (2 * a)) + "i");
}
share|improve this answer
So the OP could add a test for >= 0 or print out its value or both and that would make it clear to just apply the equation in cases where it applies. – Lee Meador Jan 17 at 23:09
I understand all of that but how would i change to make it b*b-4ac>0? With out having to show the non-real roots – Justin Nygaard Jan 17 at 23:49
@user1982007 What do you mean? What do you want to do if the user enters numbers a, b, c such that b*b-4ac < 0? – A. R. S. Jan 17 at 23:51
Nevermind I understand it now. Thank you for your help. – Justin Nygaard Jan 17 at 23:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.