Create real function from symbolic sum formula

  • Context: Mathematica 
  • Thread starter Thread starter Swamp Thing
  • Start date Start date
  • Tags Tags
    Formula Function Sum
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
10 replies · 2K views
Swamp Thing
Insights Author
Messages
1,062
Reaction score
819
In this code, I define a function of x as the sum of the first x integers.
Code:
In[7]:= fnSum[x_] := Sum[k, {k, 1, x}]

In[8]:= fnSum[x]

Out[8]= 1/2 x (1 + x)

In[9]:= fnSum[3.5]

Out[9]= 6

I would like now to take the symbolic formula underlying fnSum, and use it with real arguments. How can I assign that formula to a new real function, such that fnSum[3.5] will return the correct non-integer value instead of just 6 ?

Of course, this is just an example -- I would like to know how to do this in general.
 
Physics news on Phys.org
Let me see if i understand you. You want the function, if ##x## is integer to return $$\sum_{n=1}^{x}n$$ but if x is real you want it to return $$(\sum_{n=1}^{[x]}n)+x-[x]$$

where the symbols [x] denote the integer part of x.

Did i get this right?
 
Because I want to do the same with other sums like x^3, x^5 etc and it would be tedious to type each formula.

Using the Evaluate suggestion, I just do:
fnSum3[x_] = Evaluate[Sum[k*k*k, {k, 1, x}]]

which I might even generalize with a variable power.
 
  • Like
Likes   Reactions: Dale
It has taken me over a year to understand the power of Mathematica when it comes to this kind of thing, and now I'm able to ask sensible questions anticipating that neat solutions will exist.
 
  • Like
Likes   Reactions: Dale
Swamp Thing said:
It has taken me over a year to understand the power of Mathematica when it comes to this kind of thing, and now I'm able to ask sensible questions anticipating that neat solutions will exist.
Yes, it is very powerful. I have used it for everything from learning physics to helping my wife design a good patchwork quilt.

Do you understand why using Evaluate had the result that it did?
 
Dale said:
Do you understand why using Evaluate had the result that it did?

Not really.

I looked at the Wolfram page on Evaluate, and it says "causes expr to be evaluated even if it appears as the argument of a function whose attributes specify that it should be held unevaluated."

If I type in Attributes[Sum], it includes "HoldFirst" in the list, i.e. the first argument is to be held unevaluated.

But if I define my own function with OR without evaluate, it doesn't list any attributes, e.g. Attributes[MyFunction] is empty.

In any case, it's not clear how deferring evaluation (or not) would affect whether the argument is to be rounded off or not before calculation.
 
Actually, the important part is not Sum, it is := which is SetDelayed. SetDelayed has the attribute HoldAll, so the entire right hand side is unevaluated and gets evaluated fresh each time the left hand side is called.

When Sum is evaluated, if x is a number then it evaluates the Sum numerically, and if x is a symbol it evaluates the Sum symbolically.

So, without Evaluate the Sum is held unevaluated until the left hand side is called and then it is evaluated either way depending on if the argument is numeric or symbolic.

But with Evaluate the Sum is evaluated immediately, while x is still symbolic. This returns the algebraic expression which is then evaluated when the left hand side is called.
 
  • Informative
Likes   Reactions: Swamp Thing