For a circle with a diameter of d, what is the smallest dimension for an inscribed rectangle (maximum height for a horizontally-oriented rectangle or maximum width for a vertically-oriented rectangle) whose sides are proportional by 1920:1080?
In terms of application, what is the smallest dimension (maximum height if horizontally-oriented) of the largest possible camera sensor with a resolution of 1920*1080 pixels that will fit inside a telescope's image circle of diameter 1.25 inches (or any other arbitrary diameter, d)?
I figured it out. I got the following in WXMaxima to compute either the width or height of the inscribed rectangle:
(%i8) solve(d^2=((1920/1080)*h)^2+h^2,h);
(%o8) [h=-(9*d)/sqrt(337),h=(9*d)/sqrt(337)]
(%i9) solve(d^2=w^2+((1080/1920)*w)^2,w);
(%o9) [w=-(16*d)/sqrt(337),w=(16*d)/sqrt(337)]
or for a rectangle of proportion 1920:1080 inscribed in a circle of diameter d,
h = 9*d/SQRT(337) = ~0.490*d
w = 16*d/SQRT(337) = ~0.872*d