79531503

Date: 2025-03-24 15:45:13
Score: 1
Natty:
Report link

The newly introduced function "CurryApplied" (https://reference.wolfram.com/language/ref/CurryApplied.html) may fit your need. CurryApplied[A,{2,1}][G] is exactly what you want.

For example:

Input:
A[F_, G_] := D[F, x] D[G, y];
Print[CurryApplied[A, 2][x][y^2]];
Print[CurryApplied[A, {2, 1}][y][x^2]];
Print[CurryApplied[A, {2, 1}][x^2][y]];
Output:
2y
2x
0
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 东晨李