SolveTools
Linear
solve linear system of equations
Calling Sequence
Parameters
Description
Examples
Linear(eqns, vars, meth, notz)
eqns
-
list or set; system of equations
vars
list or set; variables to solve with respect to
meth
(optional) name of the form method=Method, where Method is one of the following: AlgebraicFunction, AlgebraicNumber, ComplexFloat, ComplexRational, Float, Polynomial, RadicalFunction, RadicalNumber, Rational or RationalAlgebraicFunction; the solution process to be used
notz
(optional) expressions that must not equal zero
The Linear command solves system of linear equations.
Optional arguments can contain expressions which must not be zero, notz, and the method for solving the system.
If method is not specified, Linear tries to dispatch the solution process according to the type of the system. The possible methods correspond to the following types of equations (the check is performed in this order).
Rational - 'polynom'('rational', vars)
Float -'polynom'('numeric', vars)
ComplexRational - 'polynom'('complex'('rational'), vars)
ComplexFloat - 'polynom'('complex'('numeric'), vars)
Polynomial - 'ratpoly'('rational')
AlgebraicNumber - 'polynom'('algnum', vars)
RadicalNumber - 'ratpoly'('radnum', vars)
RationalAlgebraicFunction - 'ratpoly'('algnum')
AlgebraicFunction - 'algfun'('rational')
RadicalFunction - 'radfun'('rational')
If the method is not specified or the system is not of one of the above types, Linear uses the default universal method, which is a primitive fraction-free algorithm.
All algorithms are intended to be used on large sparse systems, however, they also perform well on dense systems.
The algorithms used are Gaussian elimination with pivoting for stability for the numeric coefficients and primitive fraction-free for the algebraic and radical coefficients.
with⁡SolveTools:
Linear⁡x+y,x−y−2,x,y
x=1,y=−1
Linear⁡x+y,x−y−2,x,y,y+1
Linear⁡x+y−5.,4⁢x−3⁢y−2,x,y
x=2.428571428,y=2.571428571
Linear⁡x+y−5,4⁢x−3⁢y−2−I,x,y,method=ComplexFloat
x=2.428571428+0.1428571429⁢I,y=2.571428571−0.1428571428⁢I
The following example returns NULL since the system has polynomials of y as coefficients and there is no x such that equations hold for all values of y.
Linear⁡x+y−5,4⁢x−3⁢y−2,x
Linear⁡x+y+z−512,4⁢x−3⁢y−2,x,y,z
x=12+3⁢y4,y=y,z=−12−7⁢y4+5
Linear⁡x+2⁢RootOf⁡v2−w,v⁢w⁢y,5⁢x⁢w−3⁢y+7,x,y
x=−14⁢w⁢10⁢w3−3⁢RootOf⁡_Z2−w100⁢w5−9,y=7⁢10⁢RootOf⁡_Z2−w⁢w2−3100⁢w5−9
See Also
Download Help Document
What kind of issue would you like to report? (Optional)