MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

partial derivative of a sum

  • To: mathgroup at smc.vnet.net
  • Subject: [mg59788] partial derivative of a sum
  • From: Daniel Roy <droy at mit.edu>
  • Date: Sun, 21 Aug 2005 03:51:36 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

I'm wondering if Mathematica can handle expressions such as:

 ClearAll[n, l]
 D[Sum[n[i] l[i], {i, 1, Infinity}], n[10]]

The answer should be l[10], but Mathematica returns 0.
 
 ClearAll[n, l]
 D[Sum[n[i]l[i], {i, 1, 100}], n[10]]

return l[10] as expected.  More generally,

 ClearAll[n, l]
 Assumptions[N \[Element] Integers && N>10, 
             D[Sum[n[i] l[i],{i,1,N}], n[10]]

Thanks, 
Dan Roy




  • Prev by Date: Condition for pure functions
  • Next by Date: ever gotten SVG Export to work?
  • Previous by thread: Re: Condition for pure functions
  • Next by thread: Re: partial derivative of a sum