diff --git a/exercises/equation_of_a_line.html b/exercises/equation_of_a_line.html index 0c1b539c9..5b7bb49c2 100644 --- a/exercises/equation_of_a_line.html +++ b/exercises/equation_of_a_line.html @@ -8,6 +8,9 @@ .reading span { width: 40px; } + #answer_area .short input[type=text] { + width: 60px; + } @@ -52,7 +55,7 @@

A line goes through the following points, and the equation of that line is written in y = mx + b form.

-

What are the values of the slope m and the y-intercept b?

+

What is the equation of the line?

xy
@@ -60,8 +63,8 @@ coord[ 0 ]coord[ 1 ][ 1 ] === 1 ? coord[ 1 ][ 0 ] : coord[ 1 ].join( "/" )
-

m = M

-

b = B

+

y = M\enspace\cdot\enspace x + + B

@@ -122,7 +125,7 @@

The equation of the line through the points (X1, Y1) and (X2, Y2) is written in the form y = mx + b.

-

What are the values of the slope m and the y-intercept b?

+

What is the equation of the line?

graphInit({ range: 10, @@ -142,8 +145,8 @@
-

m = M

-

b = B

+

y = M\enspace\cdot\enspace x + + B