0

What I want to do is pretty straight forward: Entere something like this: HoldForm[Sum[la /. a -> b, {l, 0, N}]] and get something like this Σ lb Generally spoken, holding the sum but evaluating the expression inside the sum. Or a way to just hold one kind of function.

John D.
  • 3
  • 1
  • always better to give a concrete example of an input (the command you give), and what you want the output to be. This way there is less guessing. – Nasser Mar 08 '23 at 23:16

1 Answers1

1

Use Inactive[Sum][expr] This shuld do just fine.

user91765
  • 26
  • 1