How can one quickly evaluate a multivariate function like $z = 4x+5y$ at specific points (e.g. $P1 = (7.5, 0)$, $P2 = (3,9)$, $P3 = (32/3, 4/3)$ and $P4 = (10,0)$).
Specifically, I'd like to be able to view all values at the same time.
For a single variable function, I normally use a table such as:
Table[(x^3-x^2-x-1), {x, 0, 16, 1.6}]
(except here I am interested in listing discrete points)
4 #1 + 5 #2 & @@@ {{7.5,0}, {3,9}, {32/3, 4/3}, {10,0}}– Jason B. Jan 31 '17 at 21:49MapandApply. When I searched I found this, this, and this, and the one I linked to. You can definitely edit the questions' title to make them better for future users. As a new user, your edits are then vetted by others on the site for approval. – Jason B. Feb 01 '17 at 14:53