In Filippo's examples:
sqrt(9) + 2 ^ 2 = 3 + 4 = 7 and not 25
the sqrt operation AND the ^ operation must be executed before the + operation !
your calculation is equivalent to
(sqrt(9) + 2) ^ 2 = 25
Thank's for the 'bug report', I corrected the value in my post.
It seems that I was more concentated on the principle rather than on the result? But anyway this one must be correct !