[Tex/LaTex] How to create a space instead of a multiplication sign in an equation

equationsmath-modemath-operators

In LaTeX, I want to create the following equation:

    \begin{equation}
    x(t) = A1 sin(2 \pi f_1 t) + A2 sin(2 \pi f_2 t) 
    \end{equation}

I don't want to show the multiplication sign. But is there a way to have a space where the multiplication sign would be? So for example between A1 and sin() ?

Also, how can I change the letter size of my equation?

Thanks for help!

Best Answer

As Au101 pointed out, use \sin. Also, you presumably want a subscript on the A's.

\documentclass{article}
\begin{document}
     \begin{equation}
     x(t) = A_1 \sin(2 \pi f_1 t) + A_2 \sin(2 \pi f_2 t) 
     \end{equation}
\end{document}

enter image description here

Related Question