WOLFRAM

Copy to clipboard.
Reduce[expr,vars]

reduces the statement expr by solving equations or inequalities for vars and eliminating quantifiers.

Copy to clipboard.
Reduce[expr,vars,dom]

does the reduction over the domain dom. Common choices of dom are Reals, Integers, and Complexes.

Details and Options

  • The statement expr can be any logical combination of:
  • lhs==rhsequations
    lhs!=rhsinequations
    lhs>rhs or lhs>=rhs inequalities
    exprdomdomain specifications
    {x,y,}regregion specification
    ForAll[x,cond,expr]universal quantifiers
    Exists[x,cond,expr]existential quantifiers
  • The result of Reduce[expr,vars] always describes exactly the same mathematical set as expr.
  • Reduce[{expr1,expr2,},vars] is equivalent to Reduce[expr1&&expr2&&,vars].
  • Reduce[expr,vars] assumes by default that quantities appearing algebraically in inequalities are real, while all other quantities are complex.
  • Reduce[expr,vars,dom] restricts all variables and parameters to belong to the domain dom.
  • If dom is Reals, or a subset such as Integers or Rationals, then all constants and function values are also restricted to be real.
  • Reduce[expr&&varsReals,vars,Complexes] performs reductions with variables assumed real, but function values allowed to be complex.
  • Reduce[expr,vars,Integers] reduces Diophantine equations over the integers.
  • Reduce[,xreg,Reals] constrains x to be in the region reg. The different coordinates for x can be referred to using Indexed[x,i].
  • Reduce[expr,{x1,x2,},] effectively writes expr as a combination of conditions on x1, x2, where each condition involves only the earlier .
  • Algebraic variables in expr free of the and of each other are treated as independent parameters.
  • Applying LogicalExpand to the results of Reduce[expr,] yields an expression of the form , where each of the can be thought of as representing a separate component in the set defined by expr.
  • The may not be disjoint and may have different dimensions. After LogicalExpand, each of the has the form .
  • Without LogicalExpand, Reduce by default returns a nested collection of conditions on the , combined alternately by Or and And on successive levels.
  • When expr involves only polynomial equations and inequalities over real or complex domains, then Reduce can always in principle solve directly for all the .
  • When expr involves transcendental conditions or integer domains, Reduce will often introduce additional parameters in its results.
  • When expr involves only polynomial conditions, Reduce[expr,vars,Reals] gives a cylindrical algebraic decomposition of expr.
  • Reduce can give explicit representations for solutions to all linear equations and inequalities over the integers and can solve a large fraction of Diophantine equations described in the literature.
  • When expr involves only polynomial conditions over real or complex domains, Reduce[expr,vars] will always eliminate quantifiers, so that quantified variables do not appear in the result.
  • The following options can be given:
  • Backsubstitution Falsewhether to give results unwound by backsubstitution »
    Cubics Falsewhether to use explicit radicals to solve all cubics »
    GeneratedParameters Chow to name parameters that are generated »
    Modulus 0modulus to assume for integers »
    Quartics Falsewhether to use explicit radicals to solve all quartics »
  • Reduce[expr,{x1,x2,},Backsubstitution->True] yields a form in which values from equations generated for earlier are backsubstituted so that the conditions for a particular have only minimal dependence on earlier . »

Examples

open allclose all

Basic Examples  (4)Summary of the most common use cases

Reduce equations and inequalities:

Out[1]=1
Out[2]=2

Use specific domains:

Out[1]=1
Out[2]=2

Reduce a quantified expression:

Out[1]=1

Reduce with geometric region constraints:

Out[1]=1
Out[2]=2

Scope  (83)Survey of the scope of standard use cases

Basic Uses  (5)

Find an explicit description of the solution set of a system of equations:

Out[2]=2

Use ToRules and ReplaceRepeated (//.) to list the solutions:

Out[3]=3

Find an explicit description of the solution set of a system of inequalities:

Out[1]=1

Find solutions over specified domains:

Out[1]=1
Out[2]=2
Out[3]=3

The solution set may depend on symbolic parameters:

Out[1]=1

Representing solutions may require introduction of new parameters:

Out[1]=1
Out[2]=2

List the first 10 solutions:

Out[3]=3

Complex Domain  (16)

A linear system:

Out[1]=1

A univariate polynomial equation:

Out[1]=1

A multivariate polynomial equation:

Out[1]=1

Systems of polynomial equations and inequations can always be reduced:

Out[1]=1

A quantified polynomial system:

Out[1]=1

An algebraic system:

Out[1]=1

Transcendental equations solvable in terms of inverse functions:

Out[1]=1
Out[2]=2

In this case there is no solution:

Out[3]=3

Equations involving elliptic functions:

Out[1]=1

Equations solvable using special function zeros:

Out[1]=1

Solving this system does not require the Riemann hypothesis:

Out[2]=2

Elementary function equation in a bounded region:

Out[1]=1

Holomorphic function equation in a bounded region:

Out[1]=1

Here Reduce finds some solutions but is not able to prove there are no other solutions:

Out[1]=1

Equation with a purely imaginary period over a vertical stripe in the complex plane:

Out[1]=1

Doubly periodic transcendental equation:

Out[1]=1

A system of transcendental equations solvable using inverse functions:

Out[1]=1

A square system of analytic equations over a bounded box:

Out[1]=1

Real Domain  (26)

A linear system:

Out[1]=1

A univariate polynomial equation:

Out[1]=1

A univariate polynomial inequality:

Out[1]=1

A multivariate polynomial equation:

Out[1]=1

A multivariate polynomial inequality:

Out[1]=1

Systems of polynomial equations and inequalities can always be reduced:

Out[1]=1

A quantified polynomial system:

Out[1]=1

An algebraic system:

Out[1]=1

Piecewise equations:

Out[1]=1
Out[2]=2

Piecewise inequalities:

Out[1]=1
Out[2]=2

Transcendental equations, solvable using inverse functions:

Out[1]=1
Out[2]=2

Transcendental inequalities, solvable using inverse functions:

Out[1]=1
Out[2]=2

Inequalities involving elliptic functions:

Out[1]=1

Transcendental equation, solvable using special function zeros:

Out[1]=1

Transcendental inequality, solvable using special function zeros:

Out[1]=1

Exp-log equations:

Out[1]=1

High-degree sparse polynomial equation:

Out[2]=2

Algebraic equation involving high-degree radicals:

Out[3]=3

Equation involving irrational real powers:

Out[4]=4

Exp-log inequality:

Out[1]=1

Elementary function equation in a bounded interval:

Out[1]=1

Holomorphic function equation in a bounded interval:

Out[1]=1

Meromorphic function inequality in a bounded interval:

Out[1]=1

Periodic elementary function equation over the reals:

Out[1]=1

Transcendental systems solvable using inverse functions:

Out[1]=1
Out[2]=2

Systems exp-log in the first variable and polynomial in the other variables:

Out[1]=1
Out[2]=2

Quantified system:

Out[3]=3

Systems elementary and bounded in the first variable and polynomial in the other variables:

Out[1]=1

Quantified system:

Out[2]=2

Systems analytic and bounded in the first variable and polynomial in the other variables:

Out[1]=1

Quantified system:

Out[2]=2

Square systems of analytic equations over bounded regions:

Out[1]=1

Integer Domain  (13)

Linear system of equations:

Out[1]=1

A linear system of equations and inequalities:

Out[1]=1

A univariate polynomial equation:

Out[1]=1

A univariate polynomial inequality:

Out[1]=1

Binary quadratic equations:

Out[1]=1
Out[2]=2
Out[3]=3

A Thue equation:

Out[1]=1

A sum of squares equation:

Out[1]=1

The Pythagorean equation:

Out[1]=1

A bounded system of equations and inequalities:

Out[1]=1

A high-degree system with no solution:

Out[1]=1

Transcendental Diophantine systems:

Out[1]=1
Out[2]=2

A polynomial system of congruences:

Out[1]=1

Diophantine equations with irrational coefficients:

Out[1]=1
Out[2]=2

Modular Domains  (5)

A linear system:

Out[1]=1

A univariate polynomial equation:

Out[1]=1

A multivariate polynomial equation:

Out[1]=1

A system of polynomial equations and inequations:

Out[1]=1

Reduce a quantified polynomial system:

Out[1]=1

Finite Field Domains  (4)

Univariate equations:

Out[2]=2
Out[3]=3

Systems of linear equations:

Out[1]=1
Out[2]=2

Systems of polynomial equations:

Out[1]=1
Out[2]=2

Systems involving quantifiers:

Out[1]=1
Out[2]=2

Mixed Domains  (4)

Mixed real and complex variables:

Out[1]=1

Find real values of and complex values of for which is real and less than :

Out[1]=1

Reduce an inequality involving Abs[x]:

Out[1]=1

Plot the solution set:

Out[2]=2

Mixed integer and real variables:

Out[1]=1

Geometric Regions  (10)

Constrain variables to basic geometric regions in 2D:

Out[3]=3

Plot the solution:

Out[4]=4

Constrain variables to basic geometric regions in 3D:

Out[1]=1

Plot the solution:

Out[2]=2

Project a 3D region onto the - plane:

Out[2]=2

Plot the projection:

Out[3]=3

An implicitly defined region:

Out[2]=2

A parametrically defined region:

Out[2]=2

Derived regions:

Out[2]=2

The solution of restricted to the intersection:

Out[3]=3

Eliminate quantifiers over a Cartesian product of regions:

Out[2]=2

Regions dependent on parameters:

Out[2]=2

A condition for :

Out[1]=1

Use to specify that is a vector in :

Out[2]=2

In this case is a vector in :

Out[4]=4

Options  (6)Common values & functionality for each option

Backsubstitution  (1)

Since y appears after x in the variable list, Reduce may use x to express the solution for y:

Out[1]=1

With Backsubstitution->True, Reduce gives explicit numeric values for y:

Out[2]=2

Cubics  (1)

By default, Reduce does not use general formulas for solving cubics in radicals:

Out[1]=1

With Cubics->True, Reduce solves all cubics in terms of radicals:

Out[2]=2

GeneratedParameters  (1)

Reduce may introduce new parameters to represent the solution:

Out[1]=1

Use GeneratedParameters to control how the parameters are generated:

Out[2]=2

Modulus  (1)

Solve equations over the integers modulo 9:

Out[1]=1

Quartics  (1)

By default, Reduce does not use general formulas for solving quartics in radicals:

Out[1]=1

With Quartics->True, Reduce solves all quartics in terms of radicals:

Out[2]=2

WorkingPrecision  (1)

Finding the solution with exact computations takes a long time:

Out[1]=1

With WorkingPrecision->100, Reduce finds a solution fast, but it may be incorrect:

Out[2]=2

Applications  (9)Sample problems that can be solved with this function

Basic Applications  (1)

Prove geometric inequalities for , , and sides of a triangle:

Prove an inequality for triangles:

Out[5]=5

Prove an inequality for acute triangles:

Out[6]=6

Polynomial Root Problems  (1)

Find conditions for a quartic to have all roots equal:

Using quantifier elimination:

Out[3]=3

Using Subresultants:

Out[2]=2

Parametrization Problems  (1)

Plot a space curve given by an implicit description:

Out[3]=3
Out[3]=3
Out[4]=4
Out[5]=5

Plot the projection of the space curve on the - plane:

Out[4]=4
Out[7]=7
Out[8]=8
Out[9]=9

Integer Problems  (3)

Find a Pythagorean triple:

Out[1]=1

Find a sequence of Pythagorean triples:

Out[2]=2

Find how to pay $2.27 postage with 10-, 23- and 37-cent stamps:

Out[1]=1

The same task can be accomplished with IntegerPartitions:

Out[2]=2

Show that there are only five regular polyhedrons:

Out[1]=1

Each face for a regular -gon contributes edges, but they are shared, so they are counted twice:

Each face for a regular -gon contributes vertices, but they are shared, so they are counted times:

Using Euler's formula , find the number of faces:

Out[4]=4

For this last formula to be well defined, the denominator needs to be positive and an integer:

Out[5]=5

Hence the following five cases:

Out[6]=6

Compare this to the actual counts in PolyhedronData:

Out[7]=7

Geometry Problems  (3)

The region is a subset of if is true. Show that Disk[{0,0},{2,1}] is a subset of Rectangle[{-2,-1},{2,1}]:

Out[3]=3

Plot it:

Out[4]=4

Show that Cylinder[]Ball[{0,0,0},2]:

Out[2]=2

Plot it:

Out[3]=3

For a finite point set , the Voronoi cell for a point can be defined by , which corresponds to all points closer to than any other point for . Find a simple formula for a Voronoi cell, using Reduce:

The Voronoi cell associated with pts1 is given by:

Out[2]=2

The resulting cell is given by an intersection of half-spaces:

Out[3]=3
Out[4]=4

Find simple formulas for all Voronoi cells:

Out[6]=6

Plot them:

Out[7]=7

Properties & Relations  (10)Properties of the function, and connections to other functions

The result of reduction is equivalent to the original system:

Out[2]=2
Out[3]=3

ToRules and ReplaceRepeated can be used to backsubstitute finite solution sets:

Out[1]=1
Out[2]=2

Use Expand to simplify a result of substitution involving simple radicals:

Out[3]=3

To simplify expressions involving algebraic numbers,, use RootReduce:

Out[1]=1
Out[2]=2

To find solution instances, use FindInstance:

Out[1]=1
Out[2]=2

Solve represents solutions of complex equations in terms of replacement rules:

Out[1]=1

Solve omits solutions involving equations on parameters:

Out[1]=1
Out[2]=2

For transcendental equations, Solve may not give all solutions:

Out[1]=1
Out[2]=2

Using inverse functions allows Solve to find some solutions fast:

Out[3]=3

Finding the complete solution may take much longer, and the solution may be large:

Out[4]=4

This finds the values of for which x 2 is a solution:

Out[5]=5
Out[6]=6

SolveAlways gives the values of parameters for which complex equations are always true:

Out[1]=1

This solves the same problem using Reduce:

Out[2]=2

Resolve eliminates quantifiers, possibly without solving the resulting quantifierfree system:

Out[1]=1
Out[2]=2

Eliminate eliminates variables from systems of complex equations:

Out[1]=1

This solves the same problem using Resolve:

Out[2]=2

Reduce additionally solves the resulting equations:

Out[3]=3

Possible Issues  (3)Common pitfalls and unexpected behavior

Because appears in an inequality, it is assumed to be real; is allowed to be complex:

Out[1]=1

When domain Reals is specified, , , and Sqrt[x] are required to be real:

Out[2]=2

This allows complex values of for which both sides of the inequality are real:

Out[3]=3

Reduce does not solve equations that depend on branch cuts of Wolfram Language functions:

Out[1]=1

Plot the region where the first condition is nonzero:

Out[2]=2

Removable singularities of input equations are generally not considered valid solutions:

Out[1]=1
Out[2]=2

However, solutions may include removable singularities that are cancelled by automatic simplification:

Out[3]=3

The removable singularity at is cancelled by evaluation:

Out[4]=4

Here the removable singularity at is cancelled by Together, which is used to preprocess the equation:

Out[5]=5
Out[6]=6

Neat Examples  (1)Surprising or curious use cases

Find the vertical asymptotes of by directly using the definition of limit:

Out[1]=1
Wolfram Research (1988), Reduce, Wolfram Language function, https://reference.wolfram.com/language/ref/Reduce.html (updated 2024).
Copy to clipboard.
Wolfram Research (1988), Reduce, Wolfram Language function, https://reference.wolfram.com/language/ref/Reduce.html (updated 2024).

Text

Wolfram Research (1988), Reduce, Wolfram Language function, https://reference.wolfram.com/language/ref/Reduce.html (updated 2024).

Copy to clipboard.
Wolfram Research (1988), Reduce, Wolfram Language function, https://reference.wolfram.com/language/ref/Reduce.html (updated 2024).

CMS

Wolfram Language. 1988. "Reduce." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2024. https://reference.wolfram.com/language/ref/Reduce.html.

Copy to clipboard.
Wolfram Language. 1988. "Reduce." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2024. https://reference.wolfram.com/language/ref/Reduce.html.

APA

Wolfram Language. (1988). Reduce. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Reduce.html

Copy to clipboard.
Wolfram Language. (1988). Reduce. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Reduce.html

BibTeX

@misc{reference.wolfram_2025_reduce, author="Wolfram Research", title="{Reduce}", year="2024", howpublished="\url{https://reference.wolfram.com/language/ref/Reduce.html}", note=[Accessed: 04-April-2025 ]}

Copy to clipboard.
@misc{reference.wolfram_2025_reduce, author="Wolfram Research", title="{Reduce}", year="2024", howpublished="\url{https://reference.wolfram.com/language/ref/Reduce.html}", note=[Accessed: 04-April-2025 ]}

BibLaTeX

@online{reference.wolfram_2025_reduce, organization={Wolfram Research}, title={Reduce}, year={2024}, url={https://reference.wolfram.com/language/ref/Reduce.html}, note=[Accessed: 04-April-2025 ]}

Copy to clipboard.
@online{reference.wolfram_2025_reduce, organization={Wolfram Research}, title={Reduce}, year={2024}, url={https://reference.wolfram.com/language/ref/Reduce.html}, note=[Accessed: 04-April-2025 ]}