Question 1139599
{{{ y = sqrt(x) }}}
-----------------
{{{ graph( 400, 400, -2, 10, -2, 5, sqrt(x) ) }}}
Reflect about x-axis
{{{ y = -sqrt(x) }}}
------------------
{{{ graph( 400, 400, -2, 10, -5, 2, -sqrt(x) ) }}}
Shift right 3 units
{{{ y = -sqrt( x-3 ) }}}
---------------------
{{{ graph( 400, 400, -2, 10, -5, 2, -sqrt(x-3) ) }}}
Shift down 2 units
{{{ y = -sqrt( x-3 ) - 2 }}} ( final answer )
-------------------------
{{{ graph( 400, 400, -2, 10, -5, 2, -sqrt(x-3) - 2 ) }}}