Artifact 6e3c80bb58fd6db4e8768e2a5b9a9c9acde39e6da986873bcfab0d9ae9ac7f69:
- Executable file
r37/lisp/csl/html/r37_0268.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: 1198) [annotate] [blame] [check-ins using] [more...]
<A NAME=ARBVARS> <TITLE>ARBVARS</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>ARBVARS</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>switch</B><P> <P> <P> <P> When <em>arbvars</em> is on, the solutions of singular or underdetermined systems of equations are presented in terms of arbitrary complex variables (see <A HREF=r37_0139.html>arbcomplex</A>). Otherwise, the solution is parametrized i n terms of some of the input variables. Default is <em>on</em>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> solve({2x + y,4x + 2y},{x,y}); arbcomplex(1) {{x= - -------------,y=arbcomplex(1)}} 2 solve({sqrt(x)+ y**3-1},{x,y}); 6 3 {{y=arbcomplex(2),x=y - 2*y + 1}} off arbvars; solve({2x + y,4x + 2y},{x,y}); y {{x= - -}} 2 solve({sqrt(x)+ y**3-1},{x,y}); 6 3 {{x=y - 2*y + 1}} </TT></PRE><P>With <em>arbvars</em> off, the return value <em>{{}}</em> means th at the equations given to <A HREF=r37_0179.html>solve</A> imply no relation among the input variables. <P> <P> <P>