Expressing Functions as Sums in Mathematica: Sigma Notation Guide

  • Context: Mathematica 
  • Thread starter Thread starter member 428835
  • Start date Start date
  • Tags Tags
    Mathematica Sums
Click For Summary

Discussion Overview

The discussion centers on how to express functions as sums in Mathematica using sigma notation, specifically focusing on the exponential function e^x and its series representation.

Discussion Character

  • Technical explanation, Conceptual clarification, Homework-related

Main Points Raised

  • One participant inquires about expressing the function e^x in sigma notation using Mathematica.
  • Another participant suggests using the Sum function in Mathematica to manually write the series.
  • A participant clarifies that they are seeking a way for Mathematica to automatically provide the sum representation for e^x.
  • Another suggestion involves using natural language input to obtain the series representation of e^x.

Areas of Agreement / Disagreement

There is no consensus on the best method to achieve the desired output in Mathematica, with multiple approaches proposed and no clear agreement on a single solution.

Contextual Notes

The discussion does not resolve the specifics of how Mathematica interprets natural language input or the limitations of the Sum function in this context.

member 428835
Does anyone know how to express a given function as a sum in mathematica using sigma notation? For example, I know how to make ##e^x = 1 + x^2/2 + x^3/6 + x^4/24...## but how would I have mathematica write it as ##e^x = \Sigma_{n=0}^{\infty} x^n/n!##?

Thanks a ton!
 
Physics news on Phys.org
I'm not sure what you want here. If you want to write the sum yourself, use
Code:
Sum[x^n/(n!),{n,0,Infinity}]
Or do you want Mathematica to tell you what the sum is, given ##e^x##?
 
I was trying to have mathematica tell me the sum given ##e^x## (or any other function for that matter.

Thanks for responding!
 
The only way I can think of to obtain this is using natural language input:
Code:
= e^x series representation
 
thanks for your help!
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 19 ·
Replies
19
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K