Simplification is sometimes in the eye of the beholder. Note that
Simplify[1 - Cos[a/7]^2]
(* Sin[a/7]^2 *)
works as you desire. Alternatively you can add extra rules for any special simplifications such as:
rule = {1 - Cos[x_]^2 -> Sin[x]^2};
1 - Cos[Pi/7]^2 /. rule
(* Sin[\[Pi]/7]^2 *)
But I don't know enough about Mathematica to know "why" the same simplification does not result from using a
and Pi
.