Question: Simplifying an Expression

I am trying to transform this expression:

 

sin(sqrt(K)*t/sqrt(M))

into this expression

sin(omega[n]*t)

using the equation:

omega[n] = sqrt(K/M)

I tried to do it but all I got is this expression:

sin(t*sqrt(omega[n]^2*M)/sqrt(M))

What should I do?

Please Wait...