Question 1122996
Doing transforms one at a time:
Original equation: {{{ y = abs(x) }}}
{{{ graph ( 400,400, -10, 10, -10, 10, abs(x) ) }}}
Shifted left {{{ 9 }}} units: {{{ y = abs( x + 9 ) }}}
{{{ graph( 400,400, -20, 1, -10, 10, abs( x + 9 ) ) }}}
Vertical stretch by factor of {{{7}}}: {{{ y = 7*abs( x + 9 ) }}}
{{{ graph( 400,400, -20,1,-10,10, 7*abs( x + 9 ) ) }}}
Shifted down 6 units: {{{ y = 7*abs( x + 9 ) - 6 }}}
{{{ graph( 400,400, -20,1,-10,6, 7*abs( x + 9 ) - 6 ) }}}