Introduction
Element-wise operations let you do math on each item in two lists or arrays separately, just like doing the same task on each apple in a basket.
When you want to multiply two lists of numbers, matching each pair one by one.
When you need to divide each number in one list by the matching number in another list.
When you want to raise each number in a list to the power of the matching number in another list.
When working with arrays where you want to apply operations to each element, not the whole array at once.
When you want to avoid matrix multiplication and instead do simple math on each element.