In higher math, sum and product don't necessarily have anything to do with the sum and product we know, but are just operations with certain properties.
In this case, a product is just a collection of multiple types, e.g. a tuple. An example would be a pair of index (integer) and value (e.g. a string) when iterating over a list.
A sum on the other hand is more of an or
. In many languages, this is called something like an enum. If for example, your program should support both integers and floating point numbers, you would need the sum type int | float
.