Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

For such an easy example, Sage is able to do it:

sage: var('x,c,m,t')
(x, c, m, t)
sage: f(x) = m*x + c
sage: solve([f.integral(x,0,t) == 0],t)
[t == -2*c/m, t == 0]
click to hide/show revision 2
No.2 Revision

For such an easy example, Sage is able to do it:

sage: var('x,c,m,t')
(x, c, m, t)
sage: f(x) = m*x + c
sage: solve([f.integral(x,0,t) == 0],t)
0], t)
[t == -2*c/m, t == 0]
click to hide/show revision 3
No.3 Revision

For such an easy example, Sage is able to do it:it in the following way:

sage: var('x,c,m,t')
(x, c, m, t)
sage: f(x) = m*x + c
sage: solve([f.integral(x,0,t) == 0], t)
[t == -2*c/m, t == 0]
click to hide/show revision 4
No.4 Revision

For such an easy example, Sage is able to do it in the following way:

sage: var('x,c,m,t')
(x, c, m, t)
sage: f(x) = m*x + c
 sage: solve([f.integral(x,0,t) == 0], t)
[t == -2*c/m, t == 0]

sage: solve([f.integral(x,0,t) == 10],t)
[t == -(c + sqrt(c^2 + 20*m))/m, t == -(c - sqrt(c^2 + 20*m))/m]
click to hide/show revision 5
No.5 Revision

For such an easy example, Sage is able to do it in the following way:

sage: var('x,c,m,t')
(x, c, m, t)
sage: f(x) = m*x + c

sage: solve([f.integral(x,0,t) == 0], t)
[t == -2*c/m, t == 0]

sage: solve([f.integral(x,0,t) == 10],t)
10], t)
[t == -(c + sqrt(c^2 + 20*m))/m, t == -(c - sqrt(c^2 + 20*m))/m]