Which of the following ordered pairs represents a solution to the equation below?
y = expr(["+", ["*", M, "x"], B])
PAIR( POINTS[CORRECT] )
PAIR( point )
We can try plugging in the x-value of each ordered pair into the equation.
If we evaluate and get the y-value of the ordered pair, then that ordered pair is a solution!
Let's consider PAIR( point )
.
If we plug in point[ 0 ]
for x
and evaluate, do we get point[ 1 ]
?
y = (M)(point[ 0 ]) + B = M * point[ 0 ] + B = M * point[ 0 ] + B
Thus the only ordered pair that is a solution to the equation is PAIR( POINTS[ CORRECT ] )
.
We come to the same answer by plotting the points and the equation.
Which of the following ordered pairs represents a solution to the equation graphed below?
PAIR( POINTS[CORRECT] )
PAIR( point )
Let's try graphing each of the points.
The only point that falls on the line is PAIR( POINTS[ CORRECT ] )
.