Artifact 560bf59986afd2b09ad41a419bb840579acd8d9f4d4d005b1a18a751c2505772:
- Executable file
r37/lisp/csl/html/r37_0317.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1014) [annotate] [blame] [check-ins using] [more...]
<A NAME=PRECISE> <TITLE>PRECISE</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>PRECISE</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P> <P> <P> <P> When the <em>precise</em> switch is on, simplification of roots of even powers returns absolute values, a more precise answer mathematically. Default is <em>on</em>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> sqrt(x**2); X (x**2)**(1/4); SQRT(X) on precise; sqrt(x**2); ABS(X) (x**2)**(1/4); SQRT(ABS(X)) </TT></PRE><P>In many types of mathematical work, simplification of powers and s urds can proceed by the fastest means of simplifying the exponents arithmetically. When it is important to you that the positive root be returned, turn <em>precise</em> on. One situation where this is important is when graphing square-root expressions such as sqrt(x^2+y^2) to avoid a spike caused by REDUCE simplifying sqrt(y^2) to y when x is zero. <P> <P> <P>