I see exponentiation distributes over multiplication such as: $(3 . 4)^2 = (3^2 . 4^2)$, but I wonder: do the same rules hold for trigonometric functions? (i.e. is $(a\sin x)^2$ equal to $a^2\sin^2x$)?
Does exponentiation distribute over the multiplication of trigoneomtric functions?
184 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail AtThere are 2 best solutions below
On
What sort of numbers are you dealing with? What sort of function space?
In general, for $n \in N$ over some set $(G,*)$ endowed with some closed operator $*$ then $\forall a,b \in G$:
\begin{equation} (a*b)^n = \underbrace{\left(a*b\right) * (a*b) * (a*b) \cdots * (a*b)}_{n \mbox{ times}} \end{equation}
If it's endowed with associativity:
\begin{equation} (a*b)^n = a*b * a*b * a*b \cdots * a*b \end{equation}
If it's also endowed with commutativity then:
\begin{align} (a*b)^n &= a*b * a*b * a*b \cdots * a*b = \underbrace{(a*a*\cdots *a)}_{n \mbox{ times}} * \underbrace{(b*b*\cdots *b)}_{ n \mbox{ times}}\\ &= a^n * b^n = b^n * a^n \end{align}
I would posit that you are working with the Field of Real Numbers which is a Commutative Field defined on multiplication and addition. Each operator $+$ and $*$ form Abelian Group. Abelian Groups are both associative and commutative.
I've added a lot of detail here not to try and overcomplicate but to let you know of different types of objects and operators. It's good to get an Abstract Algebra perspective on things early on as it will make your transition into Objecs such as Vectors, Matrices, https://en.wikipedia.org/wiki/Complex_number, etc much easier (as many do not satisfy this property in general).
If you're interested in any good intro to Abstract Algebra books, let me know. There is also some great free online video tutorials on the subject. I myself spent a huge amount of time on said videos this year and it's made my mathematics (in general) much more solid.
$(3 \cdot 4)^2$ does indeed equal $(3^2 \cdot 4^2)$ (put both into a calculator: both are $144$), so what's the issue? Exponentiation does distribute over multiplication in the context of real numbers; that is to say:
$$(a \cdot b)^c = a^c \cdot b^c$$
In the case in the OP, note in particular, as a consequence of the commutativity of multiplication:
$$(a \cdot \sin(x))^2 = (a \cdot \sin(x))\cdot (a \cdot \sin(x)) = a \cdot \sin(x) \cdot a \cdot \sin(x) = a \cdot a \cdot \sin(x) \cdot \sin(x) = a^2 \cdot \sin^2(x)$$