Difference between revisions of "INT"

From iMath
Jump to: navigation, search
(Created page with "{{Keyword | 1= <code>INT { expression differential(symbol)}</code> | 2= Create an integral without bounds. The integral can then be symbolically evaluated with the...")
 
m
Line 12: Line 12:
 
|
 
|
 
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>.
 
}}
 
}}
 
[[Category:Definition]]
 
[[Category:Definition]]

Revision as of 19:24, 7 April 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

{{{4}}}