1

this is a silly question, probably. How to product derivative on derivative in Mathematica. I mean for example how to achieve this result:

enter image description here

Just more explanation. I need this for solving task with operators. I have two operators, for example:

enter image description here

I need to have the product of L1 on L2. When this is an operators of function y:

enter image description here

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
user12991
  • 71
  • 3

1 Answers1

0

Try this:

    L1[u_] := D[u, x, \[Theta]];
L2[u_] := D[u, {x, 3}];
L3[u_] := L1[L2[u]];
L3[y[x, \[Theta]]]

yielding

enter image description here

Have fun!

Alexei Boulbitch
  • 39,397
  • 2
  • 47
  • 96