I have a function F[x,y] and a list of the form:
{{a1,b1},{a2,b2},{a3,b3},{an,bn}}
Basically, I want to pass the list mentioned above as the argument to the function F and get the output as a list of the form:
{F[a1,b1],F[a2,b2],F[a3,b3],F[an,bn]}
How do I do this?