Explicit Equations Preview

a=1
b=12
c=35
disc=b24·a·c
x1=b+disc2·a
x2=bdisc2·a

Program validated. Ready to Solve.
# Example 4 - Explicit System of Equations
# Verified Solution: x1=7, x2=5

a = 1
b = -12
c = 35
disc = b^2-4*a*c
x1 = (-b+sqrt(disc))/(2*a)
x2 = (-b-sqrt(disc))/(2*a)

Explicit Equations Solution

 VariableValue
1a1
2b-12
3c35
4disc4
5x17
6x25

Settings and Hints

 Name/SourceValueType
1 Explicit equations 6 Setting
2 Anonymous expressions 0 Setting
3 #@report_fix_digits = 8 Default (integer)
4 #@report_show_source = true Default (boolean)
5 #@report_show_header = false Default (boolean)
6 #@report_show_settings = true Default (boolean)

Messages

 SeverityDescription
1Info-Infor- Explicit variables (6) a, b, c, disc, x1, x2
2Info-Infor- All variables (6) a, b, c, disc, x1, x2

Source

# Example 4 - Explicit System of Equations
# Verified Solution: x1=7, x2=5

a = 1
b = -12
c = 35
disc = b^2-4*a*c
x1 = (-b+sqrt(disc))/(2*a)
x2 = (-b-sqrt(disc))/(2*a)