Question: How to include defined characters?

This is my code:

> F := a*c;
                              a c
> K := (a*c)^2;
                             a^2  c^2
> simplify(%);
                             a^2  c^2

I want the output to be F^2. How do I do that?

Please Wait...