| 1 | initial version |
If you want a symbolic sum you should use symbolic_sum, which you can find documented here. Here is an example:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

| 2 | No.2 Revision |
If you want a symbolic sum you should have 2 choices. First, using sum:
i, n = var('i,n')
f=sum(i, i, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

You can find the documentation here.
If you use symbolic_sum, which you can find documented here. Here is an example:, then you could try:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output, running in a SageCellServer is shown below:
output is:

| 3 | No.3 Revision |
If you want a symbolic sum you have 2 choices. choices that I know of. First, using sum:
i, n = var('i,n')
f=sum(i, i, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

You can find the documentation here.
If you use symbolic_sum, documented here, then you could try:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output is:

| 4 | No.4 Revision |
If you want a symbolic sum you have 2 choices that I know of. First, using sum:sum:
i, n = var('i,n')
f=sum(i, i, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

You can find the documentation here.
If you use symbolic_sum, documented here, then you could try:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output is:

| 5 | No.5 Revision |
If you want a symbolic sum you have 2 choices that I know of. First, using sum:
i, k, n = var('i,n')
f=sum(i, i, f=sum(k, k, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

You can find the documentation here.
If you use symbolic_sum, documented here, then you could try:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output is:

| 6 | No.6 Revision |
If you want a symbolic sum you have 2 choices that I know of. First, using sum:
k, n = var('i,n')
var('k,n')
f=sum(k, k, 0, n)
f.show()
The output, running in a SageCellServer is shown below:

You can find the documentation here.
If you use symbolic_sum, documented here, then you could try:
from sage.calculus.calculus import symbolic_sum
var('i,n')
f=symbolic_sum(i, i, 0, n)
f.show()
The output is:

Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.