Question 536966
If you shift {{{f(x)=abs(x)}}} nine units to the left, you simply replace 'x' with 'x+9' to get {{{g(x)=abs(x+9)}}}. 



The graphs of the two are shown below (original graph in red and translated graph in green)





{{{ drawing(500, 500, -10, 10, -10, 10,
 graph( 500, 500, -10, 10, -10, 10,abs(x),abs(x+9))
)}}}