Capítulo 2: Comandos Úteis e Simples
Seção 2.1: Simplificação
Session 2.1.5: combine
| > | restart; |
| > | F := cos(x)^3; |
| > | combine( F, trig ); |
| > | G := ln(x) + ln(y); |
| > | combine( G ); |
| > | Why := ln(-1) + ln(-1) - ln( (-1)*(-1) ); |
| > | assume(x,positive); assume(y,positive); |
| > | combine( G ); |
| > | combine( ln(a) + ln(b) ) assuming positive; |
| > |