Can a squareroot of some number divided by some integer, or decimal numbers? What is 3sqrt(6)?
prog_tom JOIN THE REVOLUTION!!!! Dual T3 backedup science community. http://physics.sviesoft.com/forum
I think that is just short-hand for 3 * sqrt(6) sqrt(6) evals to about 2.45 (with severe rounding) so 3 * 2.45 = 7.35
Laugh, and the world laughs with you. Cry, and you just water down your vodka. Take credit, not responsibility
I thought has was looking for the cubed root of 6
Java CodeBank Entries >> Parsing URL's| Collections/ShuffleElements | Threads isAlive() | Daemon Threads |Remote Class Loading | Sorted Keys (Map) | Backwards List | Thread States | Collections/Arrays Generics | Regular Expression(Grouping and Capturing) | Properties | JLabel/JTextField Combo | Reading Request Parameter Values | Host Lookup | Setting the size of a JFrames inner-region | GUI Native L&F
Can a squareroot of some number divided by some integer, or decimal numbers? sqrt(a^2*b) = a*sqrt(b) so 3sqrt(6) = sqrt(6*3^2) = sqrt(54) (assuming no cubic root)
Forum Rules