Yahoo India Web Search

Search results

  1. We can calculate the root of a quadratic by using the formula: x = (-b ± (b2-4ac)) / (2a) The ± sign indicates that there will be two roots: root1 = (-b + √(b2-4ac)) / (2a) root1 = (-b - √(b2-4ac)) / (2a) The term b 2 -4ac is known as the determinant of a quadratic equation. It specifies the nature of roots. That is,

  2. Mar 20, 2024 · Therefore, to find the roots of a quadratic function, we set f (x) = 0, and solve the equation, ax 2 + bx + c = 0. Conditions for a quadratic equation – ax^2 + bx + c = 0 where a, b, c are real numbers and cannot be zero ie, there value must be from {-∞ to -1} and {1 to ∞}

  3. The formula to find the roots of the quadratic equation is known as the quadratic formula. A quadratic equation has two roots and the roots depend on the discriminant. In the above formula, (√ b 2 -4ac ) is called discriminant (d) .

  4. Jan 25, 2024 · In this article, we’ll see how to compute the solutions of a quadratic equation in Java. We’ll start by defining what a quadratic equation is, and then we’ll compute its solutions whether we work in the real or the complex number system.

  5. Write a Java program to find the Roots of a Quadratic Equation with an example. The mathematical representation of a Quadratic Equation is ax²+bx+c = 0. A Quadratic Equation has two roots, and they depend entirely upon the discriminant. If discriminant > 0, then two Distinct Real Roots exist for this equation.

  6. Mar 20, 2024 · Given a quadratic equation in the form ax2 + bx + c, (Only the values of a, b and c are provided) the task is to find the roots of the equation. Examples: Input: a = 1, b = -2, c = 1. Output: Roots are real and same 1. Input : a = 1, b = 7, c = 12. Output: Roots are real and different. -3, -4.

  7. Dec 12, 2021 · How to find the roots of a quadratic equation: Below is the formula of a quadratic equation: ax^2 + bx + c = 0. Here, a, b and c are all real numbers and a can’t be equal to 0. We can use the below formula to find the roots of this quadratic equation: -b ± (b^2-4ac)/ 2a. There will be two roots. The ± sign is used for that.