[sage-support] Re: solve(-(1/2*sqrt((4*w+1)+1))*t+w==0,w)

2015-03-09 Thread platane
thank you, Simon > > many computational aspects, but still human insight is needed to break a > problem up into sub-problems of chewable size, or transform the original > problem into one that is more accessible to automatic solutions. And > even if a computer algebra system (no matter which o

[sage-support] Re: solve(-(1/2*sqrt((4*w+1)+1))*t+w==0,w)

2015-03-09 Thread platane
> > In fact, the solution is: w=t+t^2 > > Are you sure? Assuming some value for t, plotting the expression > doesn't seem to show a solution at w = t + t^2. > I am sorry. I made a mistake. > best > > Robert Dodier > > -- You received this message because you are subscribed to the Goo

Re: [sage-support] Re: solve(-(1/2*sqrt((4*w+1)+1))*t+w==0,w)

2015-03-09 Thread platane
Thanks to Emmanuel Charpentier for the solution. But the trick is S1[0]^2 that needs human works. Le samedi 18 octobre 2014 11:58:37 UTC+2, Emmanuel Charpentier a écrit : > > Well, after a bit of sleep, the solution was (semi-)obvious : > > sage: var("w,t") > (w, t) > sage: E1=-(1/2*sqrt((4*w+1)+1

[sage-support] solve(-(1/2*sqrt((4*w+1)+1))*t+w==0,w)

2014-10-14 Thread platane
solve does not solve ? sage: solve(-(1/2*sqrt((4*w+1)+1))*t+w==0,w) [w == 1/2*sqrt(4*w + 2)*t] In fact, the solution is: w=t+t^2 What is wrong ? Thank you for any help. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this

[sage-support] Re: Sage 5.4 determinant is very slow

2012-11-17 Thread platane
Thank you for finding the exact version having the determinant problem. Maybe we can compare the source codes of those two versions to solve the problem. Le mardi 13 novembre 2012 23:59:21 UTC+1, platane a écrit : > > In Sage 5.4 determinant for dense matrix is very slow. For the fol

[sage-support] Sage 5.4 determinant is very slow

2012-11-14 Thread platane
In Sage 5.4 determinant for dense matrix is very slow. For the following Hankel determinant calculation, Sage 4.6.1 is 10 time more fast than Sage 5.4 (!!): Sage 5.4, Sparse = False, Time=117.49 Sage 4.6.1, Sparse=False, Time=0.0011 # import time def test(K, SP): n=1

[sage-support] Re: freeze on 36*36 integer determinant

2012-11-14 Thread platane
I have the same problem. Some thing is wrong in Sage 5.4. You could use sparse=True to calculate the determinant, but Sage 4.6.1 is much better. For my hankel determinant: K = 30 , result = -9 Sage Version 5.4, Release Date: 2012-11-09 sparse= True time = 0.00843095779419 K = 30 , r