The Mathematica Programming Language

Integration Example Program


Click below to go directly to a specific section:
Description | Source Code | Sample Run | Program Notes


Description

This program integrates the function ax^2 + bx + c on the interval from 0 to 1.


Source Code

Integrate[ a x^2 + b x + c ,{x,0,1}]
   

Sample Run

(a/3 + b/2 + c)


Program Notes

This program was tested and executed using Mathematica 3.0


[Back] [Home]

Last modified: 01:51 PM on 12/10/1999