Geogebra Sum with x elements

221 Views Asked by At

Is there a way to see the graph, using Geogebra, of a Sum, from 1 to x?

When i use the sum function, it seems like variables are not accepted, only numbers.

This is what I was trying to write: y=Sum(Sequence(i,i,1,((143091)/(x))))

1

There are 1 best solutions below

3
On BEST ANSWER

Try this:

n = 10
list = Sequence(i (i + 1) / 2, i, 1, n)
LineGraph(Sequence(n), list)