Solver.java

  1. package org.drip.zen.equation;

  2. /*
  3.  * 1) x^2 - 5*x - 50 = 0
  4.  * 2) Factorize and Find out Roots
  5.  * 3) Quadratic Equation and find out Roots
  6.  * 4) Walk Through and Illustrate the Bisection Root Search Algorithm
  7.  * 5) Code Sketch
  8.  * 6) Execute and Test Results
  9.  * 7) Function Class f(x) = y
  10.  * 8) cos x + sin x = 1.2
  11.  * 9) Execute and Test Results
  12.  * 10) Secant Method
  13.  */

  14. public class Solver {

  15.     public static double PositiveQuadraticSolution (double a, double b, double c)
  16.     {
  17.         double xLeft = 0.;
  18.         double xRight = 100.;
  19.         double closenessMatch = 0.0000001;
  20.         double xRootGuess = 0.5 * (xLeft + xRight);

  21.         double functionValue = MathematicalFunction.QuadraticExpression (a, b, c, xRootGuess);

  22.         while (Math.abs (functionValue) > closenessMatch)
  23.         {
  24.             if (functionValue > 0.)
  25.             {
  26.                 xRight = xRootGuess;
  27.             } else if (functionValue < 0.)
  28.             {
  29.                 xLeft = xRootGuess;
  30.             }

  31.             xRootGuess = 0.5 * (xLeft + xRight);

  32.             functionValue = MathematicalFunction.QuadraticExpression (a, b, c, xRootGuess);
  33.         }

  34.         return xRootGuess;
  35.     }

  36.     public static double NegativeQuadraticSolution (double a, double b, double c)
  37.     {
  38.         double xLeft = -100.;
  39.         double xRight = 0.;
  40.         double closenessMatch = 0.0000001;
  41.         double xRootGuess = 0.5 * (xLeft + xRight);

  42.         double functionValue = MathematicalFunction.QuadraticExpression (a, b, c, xRootGuess);

  43.         while (Math.abs (functionValue) > closenessMatch)
  44.         {
  45.             if (functionValue < 0.)
  46.             {
  47.                 xRight = xRootGuess;
  48.             } else if (functionValue > 0.)
  49.             {
  50.                 xLeft = xRootGuess;
  51.             }

  52.             xRootGuess = 0.5 * (xLeft + xRight);

  53.             functionValue = MathematicalFunction.QuadraticExpression (a, b, c, xRootGuess);
  54.         }

  55.         return xRootGuess;
  56.     }

  57.     public static double PositiveTrigonometricSolution (double sum)
  58.     {
  59.         double xLeft = 0.;
  60.         double xRight = 0.25 * Math.PI;
  61.         double closenessMatch = 0.0000001;
  62.         double xRootGuess = 0.5 * (xLeft + xRight);

  63.         double functionValue = MathematicalFunction.TrigonometricExpression (sum, xRootGuess);

  64.         while (Math.abs (functionValue) > closenessMatch)
  65.         {
  66.             if (functionValue > 0.)
  67.             {
  68.                 xRight = xRootGuess;
  69.             } else if (functionValue < 0.)
  70.             {
  71.                 xLeft = xRootGuess;
  72.             }

  73.             xRootGuess = 0.5 * (xLeft + xRight);

  74.             functionValue = MathematicalFunction.TrigonometricExpression (sum, xRootGuess);
  75.         }

  76.         return xRootGuess;
  77.     }

  78.     public static void main (String[] input)
  79.     {
  80.         double positiveQuadraticRoot = PositiveQuadraticSolution (1, -5, -50);

  81.         System.out.println ("Positive Quadratic Root " + positiveQuadraticRoot);

  82.         double negativeQuadraticRoot = NegativeQuadraticSolution (1, -5, -50);

  83.         System.out.println ("Negative Quadratic Root " + negativeQuadraticRoot);

  84.         double positiveTrigonometricRoot = PositiveTrigonometricSolution (1.2);

  85.         System.out.println ("Positive Trigonometric Root (Radians) " + positiveTrigonometricRoot);

  86.         System.out.println ("Positive Trigonometric Root (Degrees) " + positiveTrigonometricRoot * 180. / Math.PI);
  87.     }
  88. }