Find b.
Given the center and radius of a circle, and one axis of an ellipse, find the value of the other axis of the ellipse that lies tangent to the circle.
$$(x - h)^2 + (y - k)^2 = r^2$$
$$\frac{x^2}{a^2} + \frac{y^2}{b^2} = 1$$
Also, I feel compelled to add this edit due to the magnificent tedium and confusion I have experienced in attempting to decipher some of the answers:
I have already solved this problem! I simply mapped the line of all $y$-values for $b$ of the $x$-value of the center of the circle on the offset curve of the ellipse (offset by the radius, of course), then I drew the curve of those values with $b$ on the $x$-axis, and $y$ on the $y$-axis, only to discern the $x$-value of the point of crossing of the horizon extending from the circle's center.
And so, I am not here to have the years eroded away by riddles, nor am I seeking the most lengthy and complicated answer; quite the contrary! I only hope to find the most concise and simple way to solve this particular problem.
There seem to be at least two fairly simple methods:
Solving the system of equations
The dual-curve crossing
Please dismiss the given numerical values! I only provided them because I assumed that it would make the problem easier to understand. I was wrong. So, please only use the letter variables, as that turns out to be much less confusing.
I have updated the graphic to include the derivative(s) $\frac{dy}{dx}$ and their perpendiclar(s) $m$. When I first posted this problem, I thought someone devised a perhaps even simpler solution involving only algebra using the slopes. Do re-post!


We find the coordinates of point of tangency. At this point the derivatives of both functions must be equal:
$(x-h)^2+(y-k)^2=r^2\rightarrow y'=\frac{-x+h}{\sqrt{r^2-(x-h)^2}}$
$\frac {x^2}{a^2}+\frac{y^2}{b^2}=1 \rightarrow y'=\frac{-bx}{a\sqrt{a^2-x^2}}$
This point must also satisfy both equations,
$\begin{cases}\frac{-bx}{a\sqrt{a^2-x^2}}=\frac{-x+h}{\sqrt{r^2-(x-h)^2}}\\y=\frac ba\sqrt{a^2-x^2}=k+\sqrt{r^2-(x-h)^2}\end{cases}$
that is we have following system to solve(for given values):
$\begin{cases}\frac{-bx}{2\sqrt{4-x^2}}=\frac{-x+1}{\sqrt{1-(x-1)^2}}\\y=\frac b2\sqrt{4-x^2}=5+\sqrt{1-(x-1)^2}\end{cases}$
We may write:
$$\frac{\sqrt{2x-x^2}}{1-x}+5=\frac{2\sqrt{4-x^2}}{-bx}+5$$
$$\frac{\sqrt{2x-x^2}+5-5x}{1-x}=\frac{2\sqrt{4-x^2}}{-bx}+5$$
$\Rightarrow$ $$\frac{y-5x}{1-x}+\frac 1{xy}-5=0$$
$$10x^2y+xy^2-5xy+1=0$$
and gives this system to solve:
$$\begin{cases}10x^2y+xy^2-5xy+1=0\\y=5+\sqrt{2x-x^2}\end{cases}$$
which gives $x\approx \frac 12$, $y\approx 4$ and finally gives $b=2\sqrt5\approx 4.47$