Kitonum

21073 Reputation

26 Badges

16 years, 193 days

MaplePrimes Activity


These are replies submitted by Kitonum

@lcz If you are interested in arbitrary set partitions, you can also take a look at my  post  https://mapleprimes.com/posts/200776-Partition-Of-A-Set-Into-Parts-Of-Any-Sizes .  It was written long ago, when Maple didn't have the  Iterator package yet.

@dharr  OK. Vote up.

@ecterrab In fact, the exact solution is easily expressed explicitly (see below). But a natural question arises: why does this solution not continue to the right from  x~2.55 , as shown by the numerical solution?

restart;
ode:=diff(y(x),x,x)+2*diff(y(x),x)^2+8*y(x)=0:
ics:=y(0)=0, D(y)(0)=1:
dsolve({ode, ics}, y(x), implicit);
value(%);
isolate(%, y(x));
sol := simplify(%);
odetest(sol, [ode, ics]);

                                       

@Thomas Dean  Using the P procedure, you can plot the body of revolution for any value of the parameter  a  (this is the angle of rotation).  P (2*Pi+Pi/2)  will be the whole body:

P(5*Pi/2);

                             

 

 

@Axel Vogt  A good idea! This can be done even without using the plottools package:

restart;
plot([erf(y),y, y=-3..3]);

                                  

 

@Christian Wolinski 

It takes approximately 10 sec in Maple 2018.2.

@zenterix  In 2d input use prefix (Polish) notation:

A:=<1,2;3,4>: B:=<6,7;8,9>:
`%.`(A,B)=A.B;

 

@acer  Thank you! I tried the  convert(..., factorial)  command, but for some reason did not think to apply the  expand  one. In Maple 2018, your method also works.

In Maple 2018, the decision takes less than a second. There are probably syntax errors in your code.

restart;
M3:=Matrix(6, 6, [[1., -1., 1., -1., 1., -1.], [1., 1., 1., 1., 1., 1.], [-2., 1.618033989, 30.94427190, -153.8246851, 371.1559479, -572.9674774], [-2., 0.6180339876, 22.94427191, -41.15905356, -37.04759741, 149.3606798], [-2., -0.6180339876, 13.05572810, 22.82468509, -20.15594802, -81.03252254], [-2., -1.618033989, 5.055728096, 28.15905368, 68.04759752, 104.6393203]]);
v:=Vector[column](6, [-1/3, -1, 0, 0, 0, 0]);
a := LinearAlgebra:-LinearSolve(M3, v);

                                                           

@mmcdara  You wrote "Do you think that the OP will keep asking us to do his homework?" I dont know. Maybe it's not homework. I think that ideally everyone should do the job they like and try to do it well. It is likely that the teacher who issued this assignment will not approve if the OP passes off someone else's solution as his own.

@Carl Love 

restart;
Rose:= (n::posint)-> plots:-polarplot(`if`(n=2,[sin(n/2*t),sin(n/2*t-Pi)],`if`(n::even,sin(n/2*t),sin(n*t))), filled, color= `if`(n::odd, pink, aquamarine)):

Rose(1); Rose(2); Rose(4);  Rose(3);  # Examples

 

@Carl Love  You wrote "Your procedure needs to be changed for n=1 ". Why?

restart;
Rose:= (n::integer)-> plots:-polarplot(`if`(n::even,sin(n/2*t),sin(n*t)), filled, color= `if`(n::odd, pink, aquamarine)):

Rose(1); # Example

                   

 

@The function  We see that the solution is returned as an piecewise expression: if  p=2  then we have an empty list  [ ]  (no solutions), if  p=1  then the solutions are expressed in terms of  x3  , which can be arbitrary, (infinitely many solutions), and so on.

@kelvin goh 

restart: with(plots):
inequal([{y < 2, y >= x^2+1, (x-1)^2+(y-1)^2 <= 16},{y=x^2+1,(x-1)^2+(y-1)^2 = 16}], x = -3.5 .. 5.5, y = -3.5 .. 5.5, optionsfeasible = (color = grey));

 

5 6 7 8 9 10 11 Last Page 7 of 131