25. Cube roots ~~~~~~~~~~ A reminder for those of us who aren't too hot at Maths. In BBC BASIC, a square root can be obtained with A=SRQ(B), but how to get the cube root? The answer is that SQR is unnecessary, as you could use A=B^(1/2) instead. Thus the cube root is given by A=B^(1/3) etc.