Wolfram ResearchProductsPurchasingServices & ResourcesAbout UsOur Sites
Mathematica Technical FAQs Services & Resources / Mathematica / Kernels & Programming
-----
 /
Symbols
*Mathematica
*Network Mathematica
*webMathematica
*gridMathematica
*Personal Grid Edition
*Wolfram Workbench
*Wolfram Education Group
*Application Packages
*Mathematica for Students
*Mathematica CalcCenter
*Publicon
*A New Kind of Science Explorer
*Mathematical Explorer
*Mathematica Teacher's Edition
*Calculus WIZ
*Mathematica Player
*Ask about this page
*Print this page
*Email this page
*Give us feedback
*
Sign up for our newsletter:

Assumptions


Usage Message:

Assumptions is an option for Integrate and other functions that specifies what assumptions be made about relations between parameters.

Attributes[Assumptions] = {Protected}

Related Symbols:

Integrate , GenerateConditions

Notes:

Assumptions is an option for Integrate that allows you to specify assumptions about the parameters in a definite integral.
In[1]:= Integrate[Exp[-c x], {x, 0, Infinity}]

                      1             -(c x)
Out[1]= If[Re[c] > 0, -, Integrate[E      , {x, 0, Infinity}]]
                      c

In[2]:= Integrate[Exp[-c x], {x, 0, Infinity}, Assumptions -> {c > 0}]

        1
Out[2]= -
        c

In[3]:= Integrate[Exp[-c x], {x, 0, Infinity}, Assumptions -> {c < 0}]

                              -(c x)
Integrate::idiv: Integral of E       does not converge on {0, Infinity}.

                   -(c x)
Out[3]= Integrate[E      , {x, 0, Infinity}, Assumptions -> {c < 0}]
The value of the Assumptions option is expected to be an inequality, a list of one or more inequalities, or a set of inequalities combined using And.


Additional Online Documentation:

Mathematica 3.0
http://documents.wolfram.com/v3/RefGuide/Assumptions.html

Mathematica 4.0
http://documents.wolfram.com/v4/RefGuide/Assumptions.html




 © 2008 Wolfram Research, Inc.  Terms of Use  Privacy Policy