I'd like to know if it is possible to use NestList on a regular function with more arguments, such as:
fc[x_, y_] := {x + y, x - y};
res = NestList[fc[x,y], {100, 75}, 50]
I just started learning Mathematica on an university, read about pure functions, but from the homework's text it doesn't look like I should use that. Roughly translated, it would be "Define a function of 2 arguments (...) and apply NestList on this function."
Thanks for help

