Question 535505
Problem should read
graph a line that passes *through* (0,0) parallel to a slope 2/3
A straight line will have the form
{{{ y = m*x + b }}} where {{{m}}} is the slope and {{{b}}} is the y-intercept
given:
{{{ m = 2/3 }}}
(x,y) = (0,0)
{{{ 0 = m*0 + b }}}
{{{ b = 0 }}}
So far I have {{{ y = m*x }}}
{{{ y = (2/3)*x }}} answer
Here's a plot:
{{{ graph( 400, 400, -5, 5, -6, 6, (2/3)*x) }}}