Consider a triangle $ABC$ as in the following figure:

I have to find the max and min of the side $AC$, knowing that it is possible to move the point $A$ inside the circle of radius $R$. This is what I've done, but I don't know if it is correct and rigorous. Using the cosine theorem:
$AC^2 = AB^2 + BC^2 - 2\cdot AB\cdot BC\cdot cos(\beta)$
The max seems simple: the max is attained when all the three right-hand side terms are at their maximum, thus when $AB = R$ and $cos(\beta) = -1$.
For the min, given $AB$, the right-hand side of the cosine theorem is minimized when $cos(\beta) = 1$. To find $AB$, when $cos(\beta) = 1$ then it becomes:
$ AB^2 + BC^2 - 2\cdot AB\cdot BC = (AB - BC)^2$
which is minimized when $AB$ assumes the largest value possible, that is $AB = R$.
Is this a valid and rigorous proof? Are there more rigorous ways to prove it? Thanks