Comandos Úteis e Simples
Simplificação
| > | restart; |
| > | p := expand( (x+1)^3*(x+2)^2*(x+3) ); |
| > | q := diff( p, x ); |
| > | r := p/q; |
| > | normal( r ); |
| > |
| > | Int(1/(2+sqrt(x)), x) = int(1/(2+sqrt(x)), x) + C; |
| > | diff( %, x ); |
| > | normal( % ); |
| > | normal( (lhs-rhs)(%) ); |
| > |