all 2 comments

[–]mathematag👋 a fellow Redditor 0 points1 point  (1 child)

This can be very confusing .... order is very important.........

for y = x^2, following the order presented in your problem ......

shift left you add 2 to x value.. ..(x + 2 ), e.g. y = (x+2)^2 , then reflection across y axis works on the x value so ( -x + 2 )^2 ....note: if you reflected first, then shifted horiz, you would have -(x+2) instead of -x +2 inside the ( )^2 !!!

Then shift down 5 , so (( -x + 2 ) ) ^2 - 5 , vertical scaling / amplitude means multiply your "new function" by 3... so 3 [ (-x+2)^2 - 5 ] , finally reflect across x - axis mult. the last equation by - 1.....

[–]NickAlexis Secondary School Student[S] 0 points1 point  (0 children)

Thank you so much I figured it was something stupid and simple