The problem is quite simple, remember high school physics? Well I don't :-). Consider a tuning fork, which oscillates and produces a sound (depending on it's frequency).
We start by entering the mathematical model of the fork
'm*diff(x(t), t, 2)=-k*x(t);
Maxima prints

We now request maxima to solve the equation for us by
desolve([%],[x(t)]);
Maxima asks
Is k * m positive, negative, or zero? We say positive
Maxima prints

We ask maxima to simplify the result for us
radcan(%);
Maxima outputs

That's it, we have our solution.
No comments:
Post a Comment