Skip to content

Second Order Determinant

Jackkillian edited this page Jan 12, 2023 · 1 revision

Second Order Determinant

Solves a system of 2 equations by using second-order determinants, if possible.

Input

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

Output

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.

Clone this wiki locally