Normally the \sqrt{x} symbol automatically scales according to x, so that it usually seems to be the right size.
But is there any way to manually increase the size of one instance of the \sqrt symbol?
This issue came up in the following MWE:
\documentclass{article}
\newcommand{\blank}[1]{\hfil\penalty1000\hfilneg\rule[-3pt]{#1}{0.4pt}} % nice blank underscores
\begin{document}
Fill in the blank for the following equation:
\[ 3 = \sqrt{\blank{1cm}} \]
\end{document}

\phantomcommand? – cmhughes Mar 13 '12 at 20:00\sqrt{\phantom{\sum} \blank{1cm}}, which scales the root symbol to the right size, but still leaves an awkward space before the blank line. – jamaicanworm Mar 13 '12 at 20:07\strutsolution is not what you want, try\vphatom{}instead of\phantom{}. – Peter Grill Mar 13 '12 at 20:31