The @ and /@ functions do the same thing:
Factorial @ List[1, 2, 3, 4, 5, 6]
{1, 2, 6, 24, 120, 720}
Factorial /@ List[1, 2, 3, 4, 5, 6]
{1, 2, 6, 24, 120, 720}
What is the / for? I've looked all over and can't find any explanation for it.
Edit:
Using f gives the same result:
f[x_] := x + 1
f @ List[1, 2, 3, 4, 5, 6]
{2, 3, 4, 5, 6, 7}
f /@ List[1, 2, 3, 4, 5, 6]
{2, 3, 4, 5, 6, 7}
Attributes[Factorial],and seeListable. – cvgmt Oct 19 '21 at 02:38