The following mathmatical expression is not being displayed the way I expect it to be.
\documentclass{article}
\usepackage{amsmath,amssymb}
\begin{document}
$3x\sqrt{y}-4-2\sqrt{y}+6x$
\end{document}

Note in the output above, the square root symbol is not "base aligned" (Don't know how to describe it better in LaTex language). I have tried the \smash command but haven't been successful. I know it shouldn't be anything hard to achieve, but seemingly I can't at the moment.
I know that there exists the \smash[b]{$math input$} and \smash[t]{$math input$}.
EDIT:
Is the code below sufficient? (The answer is NO and that is why I seeked clarification to understand the typographical effects explained below.)
$3x\mathord{\raisebox{0.5\depth}{$\sqrt{y}$}}-4-2\mathord{\raisebox{0.5\depth}{$\sqrt{y}$}}+6x$
which yields:











\sqrt{y}being raised by the code\raisebox{0.5\depth}{$\sqrt{y}$}}? – azetina Mar 28 '12 at 20:24\sqrt{y}is the only square root in the formula, I'd go with\sqrt{\smash[b]{y}}– egreg Mar 28 '12 at 20:25