Question: how to force-simplify?

The command "simplify" fails to capture a fairly obvious simplification. Any way to make Maple see it?

restart;
Q := x* 2500/(2+3*6^(1/2))^2/(3*6^(1/2)-2)^2;
simplify(Q);
expand(denom(Q));
eval( Q * denom(Q) / expand(denom(Q)) );

                                  2500 x
                   Q := ---------------------------
                                1/2 2     1/2     2
                        (2 + 3 6   )  (3 6    - 2)


                               2500 x
                     ---------------------------
                             1/2 2     1/2     2
                     (2 + 3 6   )  (3 6    - 2)


                                 2500


                                  x

Q := 1* 2500/(2+3*6^(1/2))^2/(3*6^(1/2)-2)^2;
simplify(Q);

                                   2500
                   Q := ---------------------------
                                1/2 2     1/2     2
                        (2 + 3 6   )  (3 6    - 2)


                                  1

Please Wait...