-
Notifications
You must be signed in to change notification settings - Fork 0
Second Order Determinant
Jackkillian edited this page Jan 12, 2023
·
1 revision
Solves a system of 2 equations by using second-order determinants, if possible.
Prompts for the values of the equations Ax+By=C
and Dx+Ey=F
.
6 values:
-
A
: the coefficient for x in the first equation -
B
: the coefficient for y in the first equation -
C
: the value in the first equation -
D
: the coefficient for x in the second equation -
E
: the coefficient for y in the second equation -
F
: the value in the second equation
Outputs the following values:
- The first equation
- The second equation
- The second-order determinant denominator
- The second-order determinant x-numerator
- The second-order determinant y-numerator
- The solved x value that satisfies the system
- The solved y value that satisfies the system
The program will quit once you press enter
.