LeftSide Command
- LeftSide( <Equation> )
-
Gives the left-hand side of the simplified equation.
LeftSide(4x = 1 - 3y)
yields 4x + 3y.
CAS Syntax
- LeftSide( <Equation> )
-
Gives the left-hand side of the equation.
LeftSide(x + 2 = 3 x + 1)
yields x + 2.
- LeftSide( <List of Equations> )
-
Gives the list of the left-hand sides of the equations.
LeftSide({a^2 + b^2 = c^2, x + 2 = 3 x + 1})
yields \( \left\{a^2 + b^2, x + 2 \right\} \) .
- LeftSide( <List of Equations>, <Index> )
-
Gives the left-hand side of the equation specified by the index.
LeftSide({a^2 + b^2 = c^2, x + 2 = 3 x + 1}, 1)
yields \(a^2 + b^2\).
See also RightSide Command. |