# S. 1 - Linear Eqs.
# Simple linear equations system
#Verified Solution: a = 54, b = -2 , c = -4
a + 2*c = 50
b = -2 + c
a + 23*c = 12 + b
Linear equations solution
   
    |  | Variable | Value | 
 
    | 1 | a | 54 | 
 
    | 2 | c | -2 | 
 
    | 3 | b | -4 | 
Linear equations
 
 
 
 
 
 
Coefficients matrix and beta vector
   
    |  | a | c | b | beta | 
 
    | 1 | 1 | 2 | 0 | 50 | 
 
    | 2 | 0 | -1 | 1 | -2 | 
 
    | 3 | 1 | 23 | -1 | 12 | 
General
 Number of equations: 3
 Reporting digits: 10
 Elapsed time: 0.00 sec