Thanks for this excellent initiative!
The problem at line 5, where
sage: show(plot(factorial(x), (x, 1, 5)))
raises
AttributeError: 'float' object has no attribute 'gamma'
can be simplified to
sage: plot(factorial(x), (x, 1, 5))
and even to
sage: factorial(float(3.2))
That problem now has a proposed solution at
- Sage Trac ticket 26749
Let `factorial` accept float arguments
https://trac.sagemath.org/ticket/26749 Maybe columns E, F, G could have the following titles,
and be filled as follows for line 5:
- works in
Sage <= 8.2
- fails in
Sage 8.3 to 9.0
- Sage Trac ticket
26749
Are you thinking of suppressing the issues once solved,
or of keeping lines unchanged so they can be referred to?
I'm interested in write access.
Samuel