Equation solving

An example of using Newton-Raphson method to solve the equation or equivalently, to find a root of (when is the depicted function). The Newton-Raphson method is a procedure to find a numerical solution.
The quadratic formula, the symbolic solution for the quadratic equation. By using known values of the coefficients and evaluating, the numerical solution for the quadratic equation with those coefficients is found.

In mathematics, to solve an equation is to find what values (numbers, functions, sets, etc.) fulfill a condition stated in the form of an equation (two expressions related by equality). When seeking a solution, one or more free variables are designated as unknowns. A solution is an assignment of expressions to the unknown variables that makes the equality in the equation true. In other words, a solution is an expression or a collection of expressions (one for each unknown) such that, when substituted for the unknowns, the equation becomes an identity. A problem of solving an equation may be numeric or symbolic. Solving an equation numerically means that only numbers represented explicitly as numerals (not as an expression involving variables), are admitted as solutions. Solving an equation symbolically means that expressions that may contain known variables or possibly also variables not in the original equation are admitted as solutions.

For example, the equation x + y = 2x – 1 is solved for the unknown x by the solution x = y + 1, because substituting y + 1 for x in the equation results in (y + 1) + y = 2(y + 1) – 1, a true statement. It is also possible to take the variable y to be the unknown, and then the equation is solved by y = x – 1. Or x and y can both be treated as unknowns, and then there are many solutions to the equation. (x, y) = (a + 1, a) is a symbolic solution. Instantiating a symbolic solution with specific numbers always gives a numerical solution; for example, a = 0 gives (x, y) = (1, 0) (that is, x = 1 and y = 0) and a = 1 gives (x, y) = (2, 1). Note that the distinction between known variables and unknown variables is made in the statement of the problem, rather than the equation. However, in some areas of mathematics the convention is to reserve some variables as known and others as unknown. When writing polynomials, the coefficients are usually taken to be known and the indeterminates to be unknown, but depending on the problem, all variables may assume either role.

Depending on the problem, the task may be to find any solution (finding a single solution is enough) or all solutions. The set of all solutions is called the solution set. In the example above, the solution (x, y) = (a + 1, a) is also a parametrization of the solution set with the parameter being a. It is also possible that the task is to find a solution, among possibly many, that is best in some respect; problems of that nature are called optimization problems; solving an optimization problem is generally not referred to as "equation solving".

A wording such as "an equation in x and y", or "solve for x and y", implies that the unknowns are as indicated: in these cases x and y.

Overview

In one general case, we have a situation such as

ƒ (x1,...,xn) = c,

where x1,...,xn are the unknowns, and c is a constant. Its solutions are the members of the inverse image

ƒ −1[c] = {(a1,...,an)  T1×···×Tn | ƒ (a1,...,an) = c},

where T1×···×Tn is the domain of the function ƒ. Note that the set of solutions can be the empty set (there are no solutions), a singleton (there is exactly one solution), finite, or infinite (there are infinitely many solutions).

For example, an equation such as

3x + 2y = 21z

with unknowns x, y and z, can be solved by first modifying the equation in some way while keeping it equivalent, such as subtracting 21z from both sides of the equation to obtain

3x + 2y  21z = 0

In this particular case there is not just one solution to this equation, but an infinite set of solutions, which can be written

{(x, y, z) | 3x + 2y  21z = 0}.

One particular solution is x = 0, y = 0, z = 0. Two other solutions are x = 3, y = 6, z = 1, and x = 8, y = 9, z = 2. In fact, this particular set of solutions describes a plane in three-dimensional space, which passes through the three points with these coordinates.

Solution sets

Main article: Solution set

A solution set is the set of values that satisfy a given set of equations or inequalities.

If the solution set is empty, then there are no xi such that the equation

ƒ (x1,...,xn) = c,

in which c is a given constant, becomes true.

For example, let us examine a classic one-variable case. Using the squaring function on the integers, that is, the function ƒ whose domain are the integers (the whole numbers) defined by:

ƒ (x) = x2,

consider the equation

ƒ (x) = 2.

Its solution set is {}, the empty set, since 2 is not the square of an integer, so no integer solves this equation. However note that in attempting to find solutions for this equation, if we modify the function's definition more specifically, the function's domain, we can find solutions to this equation. So, if we were instead to define that the domain of ƒ consists of the real numbers, the equation above has two solutions, and its solution set is

{√2, −√2}.

We have already seen that certain solutions sets can describe surfaces. For example, in studying elementary mathematics, one knows that the solution set of an equation in the form ax + by = c with a, b, and c real-valued constants, with a and b not both equal to zero, forms a line in the vector space R2. However, it may not always be easy to graphically depict solutions sets for example, the solution set to an equation in the form ax + by + cz + dw = k (with a, b, c, d, and k real-valued constants) is a hyperplane.

Methods of solution

The methods for solving equations generally depend on the type of equation, both the kind of expressions in the equation and the kind of values that may be assumed by the unknowns. The variety in types of equations is large, and so are the corresponding methods. Only a few specific types are mentioned below.

In general, given a class of equations, there may be no known systematic method (algorithm) that is guaranteed to work. This may be due to a lack of mathematical knowledge; some problems were only solved after centuries of effort. But this also reflects that, in general, no such method can exist: some problems are known to be unsolvable by an algorithm, such as Hilbert's tenth problem, which was proved unsolvable in 1970.

For several classes of equations, algorithms have been found for solving them, some of which have been implemented and incorporated in computer algebra systems, but often require no more sophisticated technology than pencil and paper. In some other cases, heuristic methods are known that are often successful but that are not guaranteed to lead to success.

Brute force, trial and error, inspired guess

If the solution set of an equation is restricted to a finite set (as is the case for equations in modular arithmetic, for example), or can be limited to a finite number of possibilities (as is the case with some Diophantine equations), the solution set can be found by brute force, that is, by testing each of the possible values (candidate solutions). It may be the case, though, that the number of possibilities to be considered, although finite, is so huge that an exhaustive search is not practically feasible; this is, in fact, a requirement for strong encryption methods.

As with all kinds of problem solving, trial and error may sometimes yield a solution, in particular where the form of the equation, or its similarity to another equation with a known solution, may lead to an "inspired guess" at the solution. If a guess, when tested, fails to be a solution, consideration of the way in which it fails may lead to a modified guess.

Elementary algebra

Equations involving linear or simple rational functions of a single real-valued unknown, say x, such as

can be solved using the methods of elementary algebra.

Systems of linear equations

Smaller systems of linear equations can be solved likewise by methods of elementary algebra. For solving larger systems, algorithms are used that are based on linear algebra.

Polynomial equations

Polynomial equations of degree up to four can be solved exactly using algebraic methods, of which the quadratic formula is the simplest example. Polynomial equations with a degree of five or higher require in general numerical methods (see below) or special functions such as Bring radicals, although some specific cases may be solvable algebraically, for example

4x5x3 − 3 = 0

(by using the rational root theorem), and

x6 − 5x3 + 6 = 0,

(by using the substitution x = z1/3, which simplifies this to a quadratic equation in z).

Diophantine equations

In Diophantine equations the solutions are required to be integers. In some cases a brute force approach can be used, as mentioned above. In some other cases, in particular if the equation is in one unknown, it is possible to solve the equation for rational-valued unknowns (see Rational root theorem), and then find solutions to the Diophantine equation by restricting the solution set to integer-valued solutions. For example, the polynomial equation

has as rational solutions x = −1/2 and x = 3, and so, viewed as a Diophantine equation, it has the unique solution x = 3.

In general, however, Diophantine equations are among the most difficult equations to solve.

Inverse functions

See also: Inverse problem

In the simple case of a function of one variable, say, h(x), we can solve an equation of the form

h(x) = c, c constant

by considering what is known as the inverse function of h.

Given a function h : AB, the inverse function, denoted h1, defined as h1 : BA is a function such that

h1(h(x)) = h(h1(x)) = x.

Now, if we apply the inverse function to both sides of

h(x) = c, where c is a constant value in B,

we obtain

h1(h(x)) = h1(c)
x = h1(c)

and we have found the solution to the equation. However, depending on the function, the inverse may be difficult to be defined, or may not be a function on all of the set B (only on some subset), and have many values at some point.

If just one solution will do, instead of the full solution set, it is actually sufficient if only the functional identity

h(h1(x)) = x

holds. For example, the projection π1 : R2R defined by π1(x, y) = x has no post-inverse, but it has a pre-inverse π1−1 defined by π1−1(x) = (x, 0). Indeed, the equation

π1(x, y) = c

is solved by

(x, y) = π1−1(c) = (c, 0).

Examples of inverse functions include the nth root (inverse of xn); the logarithm (inverse of ax); the inverse trigonometric functions; and Lambert's W function (inverse of xex).

Factorization

If the left-hand side expression of an equation P = 0 can be factorized as P = QR, the solution set of the original solution consists of the union of the solution sets of the two equations Q = 0 and R = 0. For example, the equation

can be rewritten, using the identity tan x cot x = 1 as

which can be factorized into

The solutions are thus the solutions of the equation tan x = 1, and are thus the set

Numerical methods

With more complicated equations in real or complex numbers, simple methods to solve equations can fail. Often, root-finding algorithms like the Newton–Raphson method can be used to find a numerical solution to an equation, which, for some applications, can be entirely sufficient to solve some problem.

Matrix equations

Equations involving matrices and vectors of real numbers can often be solved by using methods from linear algebra.

Differential equations

There is a vast body of methods for solving various kinds of differential equations, both numerically and analytically. A particular class of problem that can be considered to belong here is integration, and the analytic methods for solving this kind of problems are now called symbolic integration.

See also

This article is issued from Wikipedia - version of the 9/15/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.