New Reply

sum operator

 
Share Thread Thread Tools
Jun15-12, 08:33 AM   #1
 

sum operator


I have general function
sum_(k=1, to n) f(k) = F(n)

ex.) sum_(k=1, to n) k = F(n)
solution: F(n) = (1+n)n/2

But If I have inverse problem?:
ex.) sum_(k=1, to n) f(k) = n^2
how to get f(k) ?

Generaly, If I have F(n), how to get f(k)
for sum_(k=1, to n) f(k) = F(n)

Is there some formula or method to solve this?
 
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Front-row seats to climate change
>> Attacking MRSA with metals from antibacterial clays
>> New formula invented for microscope viewing, substitutes for federally controlled drug
Jun15-12, 09:30 AM   #2
 
Quote by Emilijo View Post
I have general function
sum_(k=1, to n) f(k) = F(n)

ex.) sum_(k=1, to n) k = F(n)
solution: F(n) = (1+n)n/2

But If I have inverse problem?:
ex.) sum_(k=1, to n) f(k) = n^2
how to get f(k) ?

Generaly, If I have F(n), how to get f(k)
for sum_(k=1, to n) f(k) = F(n)

Is there some formula or method to solve this?
Hey Emilijo and welcome to the forums.

The first thing you should ask yourself is whether a unique inverse for a function is guaranteed to exist. If you do not place constraints on your function, do you think that you will have a unique function? What does this imply about the inverse?
 
Jun16-12, 05:53 AM   #3
 
For F(n)=n^2 in my example f(k)=2k-1,
because sum_(k=1,to n) (2k-1)= n^2 (wolfram alpha)
but what if I had a more complicated function, ex. sin(n)*n^2
Is there some formula to get f(k)?
In other words what function I have to sum when k goes from 1 to n
to get for example sin(n)*n^2, or generally to get function F(n)
 
Jun16-12, 07:37 AM   #4
 

sum operator


Quote by Emilijo View Post
For F(n)=n^2 in my example f(k)=2k-1,
because sum_(k=1,to n) (2k-1)= n^2 (wolfram alpha)
but what if I had a more complicated function, ex. sin(n)*n^2
Is there some formula to get f(k)?
In other words what function I have to sum when k goes from 1 to n
to get for example sin(n)*n^2, or generally to get function F(n)
The reason I asked you to consider whether the function is unique is because if its not, then you can never actually find a unique inverse for F(n). In general the answer is no which means that you won't be able to find a unique F(n) given the sum and the number of parameters in general.

As an example think of F(N) = ((N-1) MOD 3)-1 and G(N) = 1 - ((N-1) MOD 3). Now Calculate F(6) and G(6). F(6) = -1 + 0 + 1 + -1 + 0 + 1 = 0 and G(6) = 1 + 0 + -1 + 1 + 0 + -1 = 0. Both functions are completely different yet give the same answer.

Basically this has to do with the degrees of freedom you are given: the more degrees of freedom (in other words the higher the N) the more choices you can have and that translates eventually if you don't restrict things yourself to lots more functions.
 
New Reply
Thread Tools


Similar Threads for: sum operator
Thread Forum Replies
Commutator of density operator with kinetic energy operator Advanced Physics Homework 0
Difference between Hamiltonian operator and Total energy operator? Quantum Physics 4
commutator of square angular momentum operator and position operator Advanced Physics Homework 5
Show operator can be an eigenfunction of another operator given commutation relation Advanced Physics Homework 9
Eigenfunctions of translation operator and transposed operator property proof Calculus & Beyond Homework 1