Ask Your Question

user111's profile - activity

2024-04-09 07:20:57 +0200 received badge  Popular Question (source)
2024-03-22 08:36:47 +0200 commented question computation of an integral

I may be wrong but it seems Sage 9.1 is the only version available on Jupyter.

2024-03-22 07:46:29 +0200 commented question computation of an integral

I am using the online version SageMath 9.1 at http://127.0.0.1:8888/notebooks... The value of the integral is a^(-1/4)*B

2024-03-21 14:43:55 +0200 asked a question computation of an integral

computation of an integral How to compute the integral from a>0 to infinity of (x-a)^(-1/2)*x^(-3/4) ? integrate(1/(

2023-05-09 19:32:14 +0200 received badge  Famous Question (source)
2020-11-19 09:51:06 +0200 received badge  Famous Question (source)
2020-11-19 09:51:06 +0200 received badge  Popular Question (source)
2020-11-19 09:51:06 +0200 received badge  Notable Question (source)
2020-06-21 22:20:58 +0200 received badge  Notable Question (source)
2020-01-13 22:48:25 +0200 received badge  Popular Question (source)
2018-04-10 10:13:28 +0200 asked a question Problem with numerical integral

Is it normal that the second integral can't be computed ?

show(numerical_integral((x)^(-2/3),0,1)); show(numerical_integral((1-x)^(-2/3),0,1));

(2.99999987765,2.57881950224×10−06)
(+infinity,NaN)

Thanks

2018-03-16 16:49:39 +0200 received badge  Supporter (source)
2018-03-16 16:18:15 +0200 received badge  Student (source)
2018-03-16 13:35:58 +0200 received badge  Scholar (source)
2018-03-16 13:34:22 +0200 commented answer Fill colors with two contour plots

Wonderful ! Thank you (sorry that I can't upvote).

2018-03-10 12:15:37 +0200 commented question Fill colors with two contour plots

for instance: A = x; B = y;

2018-03-10 10:40:31 +0200 asked a question Fill colors with two contour plots

Assume I have two contour plots, of functions A and B, say, depending on x and y, with one level curve on each plot. There are two different zones in each plot, filled with two colors, like in the following:

Gr=Graphics(); 
Gr += contour_plot(A,(x,0,10),(y,0,10),contours=1,cmap=['white', 'red']);
Gr += contour_plot(B,(x,0,10),(y,0,10),contours=1,cmap=['yellow', 'blue']);
show(Gr);

The problem is that the resulting picture only shows the filling colors of the second plot.

How do I get a picture with each zone (from both plots) in a different color ? some kind of transparency ?

Sorry if my question is trivial,

Thanks !