0

I'd like a replacement rule that replaces derivatives with their total order. I tried

ReplaceAll[Derivative[x__] -> Plus[x]][Derivative[1, 1]]

but it doesn't return 2, but Sequence[1,1].

How could I get the sum of the sequence to work inside the rule?

Sampo Smolander
  • 330
  • 3
  • 10

1 Answers1

1

As per the comment above,

ReplaceAll[Derivative[x__] :> Plus[x]][Derivative[1, 1]]
Sampo Smolander
  • 330
  • 3
  • 10