Difference between revisions of "INT"

From iMath
Jump to: navigation, search
m
 
Line 13: Line 13:
 
3=
 
3=
 
<code>@int@ EQDEF z = INT { sin(x) differential(x)}</code> defines the integral and <code>@simp@ EQDEF SIMPLIFY(@int@, "integrate")</code> will evaluate it to the value <code>C - cos(x)</code>.
 
<code>@int@ EQDEF z = INT { sin(x) differential(x)}</code> defines the integral and <code>@simp@ EQDEF SIMPLIFY(@int@, "integrate")</code> will evaluate it to the value <code>C - cos(x)</code>.
 +
|4=
 +
[[INTEGRATE]] [[INT FROM ... TO]]
 
}}
 
}}
 
[[Category:Definition]]
 
[[Category:Definition]]

Latest revision as of 19:20, 27 June 2017

Syntax

INT { expression differential(symbol)}

Implemented in iMath since version 2.2.0 or earlier.

Explanation

Create an integral without bounds. The integral can then be symbolically evaluated with the simplification type integrate. iMath will choose C as the integration constant automatically.

The differential can be contained in the expression and iMath will find it (you might have to expand the expression first). But if there is no differential matching the integration variable anywhere, then you will get strange results from the evaluation.

The integrand must be enclosed in curly brackets.

Example

@int@ EQDEF z = INT { sin(x) differential(x)} defines the integral and @simp@ EQDEF SIMPLIFY(@int@, "integrate") will evaluate it to the value C - cos(x).

See also

INTEGRATE INT FROM ... TO