Ask Your Question

miguelython's profile - activity

2021-02-03 20:46:42 +0200 received badge  Student (source)
2016-08-02 20:38:57 +0200 received badge  Notable Question (source)
2015-11-15 07:59:46 +0200 received badge  Popular Question (source)
2015-09-27 12:24:09 +0200 commented answer simplify sqrt(x/y^2)*y

I mean if I had the time and knowleage, I change it in the source code. Nevertheless, I'm thankful to all community of sagemath

2015-09-27 12:17:05 +0200 commented answer simplify sqrt(x/y^2)*y

I don't want this beacause is false. I want sqrt(x^2)=abs(x) or in case ofassume(x>0) or assume(x<0) : sqrt(x^2)=x or sqrt(x^2)=-x resp

2015-09-27 11:44:29 +0200 received badge  Editor (source)
2015-09-27 11:43:56 +0200 commented answer simplify sqrt(x/y^2)*y

thank you, I edited

2015-09-20 21:52:52 +0200 answered a question simplify sqrt(x/y^2)*y

Yes, I mean just "x" part so sqrt(x)... sorry for not to be clear. Thanks. It works, but I wonder why canonicalize_radical isn't part of simplify_full?

2015-09-20 21:50:03 +0200 received badge  Scholar (source)
2015-09-20 18:03:09 +0200 asked a question simplify sqrt(x/y^2)*y

Hello my problem is with a bigger equation but the problem is bassicly this : sage: var('x','y', domain=real)
sage: assume(x>0)
sage: assume(y>0)
sage: e = sqrt(1/y^2)y
sage: e.simplify_full()
1
sage: e = sqrt(x/y^2)
y
sage: e.simplify_full()
y*sqrt(x/y^2)

Anyone explain me how to get just sqrt(x) and why it doesn't do directly? Thanks