Biblioteca Tikz: ¿qué impide que este código funcione? No se puede llamar a la función sin()

Biblioteca Tikz: ¿qué impide que este código funcione? No se puede llamar a la función sin()

Intenté llamar a una función matemática en la parte de la coordenada x de una coordenada (x,y), sin éxito. Curiosamente funciona para la coordenada y. Algo debe estar mal con la sintaxis pero no puedo entenderlo.

Este código demuestra el problema:

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0) to [out=30,in=-120] (.5,{cos(60)}); % WORKS
\draw (0,0) to [out=30,in=-120] ({.5},{cos(60)}); % WORKS
\draw (0,0) to [out=30,in=-120] ({sin(30)},.5); % ATTEMPT 1: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] (sin(30),.5); % ATTEMPT 2: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] ({sin(30)},{.5}); % ATTEMPT 3: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] ({sin(30),.5}); % ATTEMPT 4: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] {(sin(30),.5)}; % ATTEMPT 5: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] ({{sin(30)},.5}); % ATTEMPT 6: DOES NOT WORK
\draw (0,0) to [out=30,in=-120] {({sin(30)},.5)}; % ATTEMPT 7: DOES NOT WORK
\end{tikzpicture}
\end{document}

Tu ayuda es muy apreciada. Atentamente,

información relacionada