I am having trouble shifting graphs when you need to define a function as y1= then you need to subtract or add to move it right or left. Lets say you have
y1=√(1-x^2)
how do you then shift that to the right and left? When you do
y2=y1-2
that shifts it up two. How would you shift this over two? you need to define y2 in terms of y1
Remember $y_1$ and $y_2$ are functions; so we can also work with its input.
In order to shift the graph horizontally, say two to the right, we need the value of the original function, $y_1(x)$, to be the same as the value of the new function two to the right, $y_2(x + 2)$. In other words, we want $$ y_2(x + 2) = y_1(x) $$ So a simple substitution gives $$ y_2(x) = y_1(x - 2) $$ For your example in particular, we have $y_2(x) = y_1(x - 2) = \sqrt{1 - (x - 2)^2}$. You can easily generalize this to arbitrary horizontal shifts to the left or right.