When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Transcendental equation - Wikipedia

    en.wikipedia.org/wiki/Transcendental_equation

    [4] This will not work if squares or higher power of x occurs in an exponent, or if the "base constants" do not "share" a common q . sometimes, substituting y = x e x may obtain an algebraic equation; after the solutions for y are known, those for x can be obtained by applying the Lambert W function , [ citation needed ] e.g.:

  3. Equation solving - Wikipedia

    en.wikipedia.org/wiki/Equation_solving

    The solution set of the equation ⁠ x 2 / 4 ⁠ + y 2 = 1 forms an ellipse when interpreted as a set of Cartesian coordinate pairs. Main article: Solution set The solution set of a given set of equations or inequalities is the set of all its solutions, a solution being a tuple of values, one for each unknown , that satisfies all the equations ...

  4. How to Solve It - Wikipedia

    en.wikipedia.org/wiki/How_to_Solve_It

    How to Solve It suggests the following steps when solving a mathematical problem: . First, you have to understand the problem. [2]After understanding, make a plan. [3]Carry out the plan.

  5. Extraneous and missing solutions - Wikipedia

    en.wikipedia.org/wiki/Extraneous_and_missing...

    To begin solving, we multiply each side of the equation by the least common denominator of all the fractions contained in the equation. In this case, the least common denominator is ( x − 2 ) ( x + 2 ) {\displaystyle (x-2)(x+2)} .

  6. Solving quadratic equations with continued fractions - Wikipedia

    en.wikipedia.org/wiki/Solving_quadratic...

    Denoting the two roots by r 1 and r 2 we distinguish three cases. If the discriminant is zero the fraction converges to the single root of multiplicity two. If the discriminant is not zero, and |r 1 | ≠ |r 2 |, the continued fraction converges to the root of maximum modulus (i.e., to the root with the greater absolute value).

  7. Quadratic formula - Wikipedia

    en.wikipedia.org/wiki/Quadratic_formula

    The roots of the quadratic function y = ⁠ 1 / 2 ⁠ x 2 − 3x + ⁠ 5 / 2 ⁠ are the places where the graph intersects the x-axis, the values x = 1 and x = 5. They can be found via the quadratic formula. In elementary algebra, the quadratic formula is a closed-form expression describing the solutions of a quadratic equation.

  8. Hermite interpolation - Wikipedia

    en.wikipedia.org/wiki/Hermite_interpolation

    Let us consider a polynomial P(x) of degree less than n(m + 1) with indeterminate coefficients; that is, the coefficients of P(x) are n(m + 1) new variables. Then, by writing the constraints that the interpolating polynomial must satisfy, one gets a system of n(m + 1) linear equations in n(m + 1) unknowns. In general, such a system has exactly ...

  9. Newton's method - Wikipedia

    en.wikipedia.org/wiki/Newton's_method

    def f (x): return x ** 2-2 # f(x) = x^2 - 2 def f_prime (x): return 2 * x # f'(x) = 2x def newtons_method (x0, f, f_prime, tolerance, epsilon, max_iterations): """Newton's method Args: x0: The initial guess f: The function whose root we are trying to find f_prime: The derivative of the function tolerance: Stop when iterations change by less ...