Question 888590
{{{ f(x) = abs(x) }}}
First, to shift it up {{{ 3 }}} units:
{{{ f(x) = abs(x) + 3 }}}
----------------------
Then, to shift the function left {{{ 9 }}} units,
{{{ f(x) = abs( x + 9 ) + 3 }}}
----------------------------
Here are plots of the original function and 
the modified one:
{{{ graph( 400, 400, -10, 10, -10, 10, abs(x), abs( x+9 ) + 3  ) }}}