I am almost sure Mathematica has a way to do what I am looking for. I am trying to fit a quadratic T(x) = ax^2 + bx + c to three values of the function analytically. I proceed as follows:
T[x_] := c_0 + c_1 x + c_2 x^2;
Solve[T_w == T[x_w] && T_p == T[x_p] && T_e == T[x_e], {c_0, c_1, c_2}]
The output is:
{{}}
What am I doing incorrectly?
Edit: I am using display subscripts instead of underscores. If I replace the former the latter, it works fine. Why is this true? Is there a way to declare variables with subscripts from the start?