Changes between Initial Version and Version 1 of Ticket #9834
- Timestamp:
- Aug 28, 2010, 8:27:02 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9834 – Description
initial v1 8 8 note the minus sign :( 9 9 10 Also (another report from web): 11 {{{ 12 sage: var('a b c x') 13 sage: solve(a*x^2+b*x+c==0,x)[0] 14 x == -1/2*(b + sqrt(-4*a*c + b^2))/a 15 sage: latex(_) 16 x = \frac{-b + \sqrt{-4 \, a c + b^{2}}}{2 \, a} 17 }}} 18