repo.or.cz
/
maxima.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use %%PRETTY-FNAME in more quadpack error messages
[maxima.git]
/
share
/
simplification
/
rncomb.dem
blob
9b00ef8e90a2f4f3e8dc05213575c4a3ef1d4a1e
1
load("rncomb")$
2
/* COMBINE will not combine the terms in EXP1 because
3
their denominators are not identical: */
4
exp1:x/(2*(x+y))+z/(x+y);
5
combine(exp1);
6
/* RNCOMBINE will: */
7
rncombine(%);
8
/* RNCOMBINE will combine terms whenever their denominators are
9
identical or differ by a numerical factor. */
10
exp2:a/2+b/2+c/3+d/3;
11
combine(exp2);
12
rncombine(exp2);
13