Solving Linear Systems Equations

Description

Although systems of linear equations are best solved with matrices and Gaussian elimination, here is Sage cell that solves the linear system of equations $x+y=6$ and $x-y=4$

Sage Cell

Code

var('x', 'y')
solve([x+y==6, x-y==4], x, y)

Options

None

Tags

Primary Tags—Precalculus: Systems of equations and inequalities

Secondary Tags—Systems of equations and inequalities: Linear systems

Related Cells

Attribute

Author: J. A. Phillips

Permalink:

Date: 01 Oct 2018 20:22

Submitted by: James A Phillips

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License