May I know how should I add two functions(Multivariable).
For example,
T=lambda t,y: [0,t]
P=lambda t,y: [y,y]
what is the proper way to get T-P
because when I tried, it gives an error message
"unsupported operand type(s) for -: 'function' and 'function'".
At first I mulitvariable case will also follow the same case as it is for single variable. (here) but it doesn't work.
And I apologize for putting my question as a single variable function earlier