partialFraction.txt 146 B

1234567891011
  1. % partial fractions
  2. b:=(x+1)^2*(x+2);
  3. a:=2/b;
  4. pf (a, x);
  5. c:=ws;
  6. first (c)+second (c)+third (c);
  7. off exp;
  8. ws;
  9. first (c)+second (c)+third (c);
  10. end;