We all know what squaring is:
$$n^2=n\times n$$
More specifically, I could define it as
$$n^2=\text{ area of a square with side length }n$$
Instead of using normal notation, I wish to say that
$$\operatorname{square}(n)=\text{ area of a square with side length }n$$
Is there any point in having this extend to other shapes?
$$\operatorname{triangle}(n)=\text{ area of a triangle with side length }n$$
$$\operatorname{pentagon}(n)=\text{ area of a pentagon with side length }n$$
etc.
Specifically, is there any good reason for why we would have such things? Secondly, what makes the square so special here that it gets its own operation?
For example, we could've done everything in terms of triangles. Then the area of square would be given as
$$\operatorname{square}(n)=\frac{12}{\sqrt3}\operatorname{triangle}(n)$$
Preferably, I'd like to say $\square(n)$ and $\triangle(n)$, but I can't do $\pentagon(n)$.
EDIT
My goodness, I completely forgot to include the circle function, the most important of them all! So don't forget to consider that.
A similarly good question is whether or not this has been used before. (I know we use circles/triangles when dealing with polar coordinates)