Question #3c21d
1 Answer
In line
Explanation:
Let me start by rewriting the five lines
#"L1: " 4s^2 - 40s + 100 = 0#
#"L2: " s^2 - 10s + 25 = 0#
#"L3: " s = (-10 +- sqrt( 10^2 - 4 * 1 * 25))/(2 * 1)#
#"L4: " s = (-10 +- 0)/2#
#"L5: " s = -10/2#
#"L6: " s = -5#
The way I see it, the error occurs in line
Your starting quadratic equation looks like this
#4s^2 - 40s + 100 = 0#
To get to
#(color(red)(cancel(color(black)(4)))s^2)/color(red)(cancel(color(black)(4))) - (40s)/4 + 100/4 = 0#
#s^2 - 10s + 25 = 0#
So far, so good. Now comes the interesting part. You can get to line
#color(blue)(ax^2 + bx + c = 0)#
takes the form
#color(blue)(|bar(ul(color(white)(a/a)x_(1,2) = (-b +- sqrt(b^2 - 4 * a * c))/(2 * a) color(white)(a/a)|)))#
For your quadratic, you have
#{(a = 1), (b = -10), (c = 25) :}#
This means that line
#s_(1,2) = (- (-10) +- sqrt( (-10)^2 - 4 * 1 * 25))/(2 * 1)#
As you can see, your example uses
Therefore, you should have
#"L3: " s_(1,2) = (- (-10) +- sqrt( (-10)^2 - 4 * 1 * 25))/(2 * 1)#
#"L4: " s_(1,2) = (10 +- 0)/2#
#"L5: " s = 10/2#
#"L6: " s = 5#