I have had a go at this a few times and this id the closest I can get to the answer. Any pointers please. We are transposing for A2
The solution is
The solution is
OK; let gh = k
(always try to simplify/shorten; less writing...get my drift?)
q = aSQRT[2k / ((a/b)^2 - 1)]
q/a = SQRT[2k / ((a/b)^2 - 1)]
q^2 / a^2 = 2k / (a^2 / b^2 - 1)
q^2 / a^2 = 2k / [(a^2 - b^2) / b^2]
q^2 / a^2 = 2kb^2 / (a^2 - b^2)
2a^2 b^2 k = q^2 a^2 - q^2 b^2
2a^2 b^2 k + q^2 b^2 = a^2 q^2
b^2 = a^2 q^2 / (2a^2 k + q^2)
b = SQRT[a^2 q^2 / (2a^2 k + q^2)] : YAHOO!!!
I ain't "explaining" nuttin' !