|
|
Part 10: Integration
If you know that
all you want is a numerical estimate, you can enter
NIntegrate[Sin[x^3 + x^5], {x, 0,
Pi/2}]
The significance of using the NIntegrate function is that
Mathematica does not try to find a symbolic solution
before starting on the numerical estimate.
Note: In modern versions of Mathematica , you have access to several palettes. These palettes simplify the creation of many common Mathematica commands. The BasicInput Palette is particularly useful for setting up integrals. The use of these palettes is described in the Appendix.
|
|