What goes wrong in the SAGE notebook interface for secondary school usage

Some of (nice) sage features are not well adapted at an elementary level. In particular:

Supplementary:

Solution for polynoms

The high school interface provides two basics functions for creating variables : the var (a symbolic variables for functions) and unknowns (exclusively for polynoms).

sage: a,b,c = var('a,b,c')
sage: X, Y = unknown('X')
(X,Y)
sage: P = a*X^2 + b*X + c

An interactive trigonometric circle


/!\ Edit conflict - other version:


Solution for polynoms

The high school interface provides two basics functions for creating variables : the var (a symbolic variables for functions) and unknowns (exclusively for polynoms).

sage: a,b,c = var('a,b,c')
sage: X, Y = unknown('X')
(X,Y)
sage: P = a*X^2 + b*X + c


/!\ Edit conflict - your version:



/!\ End of edit conflict


Patches

Following the development model of Sage, we will use mercurial patches here.

Program of high school in France

In bracket are the corresponding levels.

Object or not

The python list usage must be kept as it is. But we have the choice to use or not (explicitely) some methods.

Starting from a list:

python: l = [1,2,3]

We can use the standard append:

python: l.append(4)

or the += concatenation:

python: l += [4]

TODO

There is still a lot of problems: