Einfache Multiplikation:
a= (*1. Faktor*) b= (*2. Faktor*) a b
Produkte:
Remove["Global`*"] f[x_]:= (*Eingabe der Funktion z.B. x^2*) start= (*Startwert*) schluss= (*Endwert*) schritt= (*Schrittweite*) Product[f[x],{x,start,schluss,schritt}]//N