Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Mathematics and Algorithms > Formula Manipulation > Assumptions and Domains >

Exists (Exists)

Exists[x, expr]
represents the statement that there exists a value of x for which expr is True.
Exists[x, cond, expr]
states that there exists an x satisfying the condition cond for which expr is True.
Exists[{x1, x2, ...}, expr]
states that there exist values for all the x_i for which expr is True.
  • Exists[x, expr] can be entered as  exists _xexpr. The character  exists can be entered as Esc ex Esc or \[Exists]. The variable x is given as a subscript.
  • Exists[x, cond, expr] can be entered as  exists _(x,cond)expr.
  • Exists[x, cond, expr] is output as  exists _(x,cond)expr.
  • The condition cond is often used to specify the domain of a variable, as in xElementIntegers.
  • Exists[x, cond, expr] is equivalent to Exists[x, cond&&expr].
  • Exists[{x1, x2, ...}, ...] is equivalent to  exists _(x_1) exists _(x_2)....
  • The value of x in Exists[x, expr] is taken to be localized, as in Block.
This states that there exists a positive solution to the equation a x^2+b x+c=0:
Use Resolve to get a condition on real parameters for which the statement is true:
Reduce gives the condition in a solved form:
This states that there exists a positive solution to the equation a x^2+b x+c=0:
In[1]:=
Click for copyable input
Out[1]=
Use Resolve to get a condition on real parameters for which the statement is true:
In[2]:=
Click for copyable input
Out[2]=
Reduce gives the condition in a solved form:
In[3]:=
Click for copyable input
Out[3]=
This states that there exists x for which the equation is true:
Use Resolve to prove that the statement is true:
This states that there exists a real x for which the equation is true:
Use Resolve to prove that the statement is false:
This states that there exists a pair {x,y} for which the inequality is true:
With domain not specified, Resolve considers algebraic variables in inequalities to be real:
With domain Complexes, complex values that make the inequality True are allowed:
This states that the negation of a tautology is satisfiable:
Use Resolve to prove it False:
If the expression does not explicitly contain the variable, Exists simplifies automatically:
TraditionalForm formatting:
This states that a quadratic attains negative values:
This gives explicit conditions on real parameters:
Test whether one region is included in another:
This states that there are points satisfying R1 and not R2:
The statement is false, hence the region defined by R1 is included in the region defined by R2:
Plot the relationship:
Test geometric conjectures:
This states that there is a triangle for which the conjecture is not true:
The statement is true, hence the conjecture is not true for arbitrary triangles:
This states that there is an acute triangle for which the conjecture is not true:
The statement is false, hence the conjecture is true for all acute triangles:
Prove that a statement is a tautology:
This proves that there are no values of {a,b,c} for which the statement is not true:
This can be proven with TautologyQ as well:
Negation of Exists gives ForAll:
Quantifiers can be eliminated using Resolve or Reduce:
This eliminates the quantifier:
This eliminates the quantifier and solves the resulting equations and inequalities:
This shows that a system of inequalities has solutions:
Use FindInstance to find an explicit solution instance:
This states that there exists a complex x for which the equations are satisfied:
Use Resolve to find conditions on y and z for which the statement is true:
This solves the same problem using Eliminate:
This finds the projection of the complex algebraic set x y=1 along the y axis:
This finds the projection of the real unit disc along the y axis:
New in 5
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team