COMPLETE EDIT:
I am trying to solve a symbolic equation and I've heard from some people that Mathematica is able to do it and from others that it isn't possible. It is actually quite easy to solve by hand but I want to learn Mathematica and I would be great if Mathematica is capable of doing something like this.
The problem is the following:

Mathematica Code
Subscript[X, t] ==
(1 - \[Theta])*Sum[\[Theta]^(k - 1)*(Subscript[P, t - k] - Subscript[P, t - k - 1]), {k, 1, t - 1}] +
\[Theta]^(t - 1)*1; Subscript[NN, t] == Subscript[X, t]/(\[Gamma]*\[Sigma]^2);
Subscript[M, t] == (Subscript[D, t] - (T - t - 1)*\[Gamma]*\[Sigma]^2*Q - Subscript[P, t])/(\[Gamma]*\[Sigma]^2);
u*Subscript[NN, t] + \[Mu]*Subscript[M, t]==Q; u == \[Mu] - 1;
Inequality[1, Greater, \[Mu], GreaterEqual, 0
People have been saying that it is possible, suggest that I should use RSolve but I do not fully understand the function. The guide on Mathematica says the following:
RSolve[eqn,a[n],n]
so for eqn I should put my equations in with a comma as separator. a[n] are my variables I think. n should be t and k.
Trying to do so doesn't give me the result I want though unfortunately.
All in all my problem does not only concern these equations I posted. I want to learn how to solve symbolic equations in general with Mathematica.
Thanks!