Kitonum

21550 Reputation

26 Badges

17 years, 123 days

MaplePrimes Activity


These are replies submitted by Kitonum

  @toandhsp The acer's method with  extrema  can also be used for this example, but one addition is needed. If the curve defining the relationship between the variables were smooth as in the initial example, then there would be no problems. But in this example there is the point  (x=4, y=3) lying on this curve in which the differentiability is broken. Therefore, this point must be checked separately for the presence of an extremum:

restart;
z:=x+I*y;
R:=evalc(3*abs(z-4-3*I)+4*abs(z-8-6*I) = 20);
is(eval(R, [x=4,y=3]));
is(eval(R, [x=8,y=6]));
a:=op(extrema(sqrt(x^2+y^2), {R}, {x,y}, 's'));  
# The first candidate for an extremum
A:=[op(s[1])];
b:=simplify(eval(sqrt(x^2+y^2), [x=4,y=3]));  
# The second candidate for an extremum
Min=min(a, b), Max=max(a, b);  # The results
plots:-display(plots:-implicitplot(R, x=0..9, y=0..8, color=blue, gridrefine=5), plottools:-disk([4,3], 0.1, color=red), plottools:-disk(rhs~(A), 0.1, color=red), view=[0..9,0..8]);  # Visualization 

                     

                            


 

@Markiyan Hirnyk  Sorry, but I do not understand your reaction. Maybe someone else can satisfy your curiosity.

@John Fredsted  For  z=x+I*y  we have a continuous function  (x,y)->sqrt(x^2+y^2)  defined on the segment connecting the points  A(-3, 2)  and  B(3, 8) . In fact, this will be a function of one variable, because  [x,y]=(1-t)*[-3,2]+t*[3,8]  or  x=6*t-3, y=2+6*t  for t in [0,1] . If an extremum (min  or  max) is reached within a segment, then this will be a critical point for this function, that is, the derivative at this point is 0. But the extremum can be reached at the ends of the segment and the corresponding points do not need to be critical. In this example, the maximum is reached at the end of the segment for  t = 1 .

@John Fredsted  I think this is the simplest way to solve this problem. The difference in efficiency is not too big:

primesInRange := (a::posint,b::posint) -> select(isprime,[$(a..b)]):

t:=time():   
PrimesInRange(10^5,10^6):
time()-t;

t:=time():   
primesInRange(10^5,10^6):
time()-t;

                             2.750
                             5.375

 

 

@Carl Love  Should be  p<=b

@snayperx 

 A simple procedure  MyPolyhedron  solves your problems. Required parameter  Faces  is the list of all faces of the polyhedron given as lists of its vertices. Optional parameters: 'plot' (by default), vertices, edges.

MyPolyhedron:=proc(Faces, opt:='plot')
local n, S;
n:=nops(Faces);
S:=seq(plottools:-polygon(Faces[i], color=khaki), i=1..n);
if opt='plot' then return plots:-display(S, scaling=constrained) else
if opt=vertices then return {op(map(op, Faces))} else
if opt=edges then {seq(seq({Faces[i,j], Faces[i,`if`(j<nops(Faces[i]), j+1, 1)]}, j=1..nops(Faces[i])), i=1..n)} fi; fi; fi;
end proc:  

 

Example of use:

Faces:=[[[2,1,0],[-2,1,0],[-2,-1,0],[2,-1,0]], [[2,1,0],[1,0,2],[2,-1,0]], [[2,1,0],[-2,1,0],[-1,0,2],[1,0,2]], [[-2,1,0],[-1,0,2],[-2,-1,0]], [[2,-1,0],[-2,-1,0],[-1,0,2],[1,0,2]]]:
MyPolyhedron(Faces);
MyPolyhedron(Faces, vertices);
MyPolyhedron(Faces, edges);

 

In Maple 2017.0 i get a solution without any problems:

restart;
Sys:={p=(w^2+v*w)/(1-2*u-w), q=u+w, r=w}:
solve(Sys, {u,v,w});
simplify(eval(Sys, %));  
# Checking
 

@vv  Thank you for this improvement.

@vv  Maple copes with this example, if a little more help it (in  f1  we manually split  f  into 2 summands):

restart;
f := (3*(x+exp(x))^(2/3)+(x^2+3*x)*exp(x)+4*x^2)/((x+exp(x))^(2/3)*x);
f1:=3/x+``(((x^2+3*x)*exp(x)+4*x^2)/((x+exp(x))^(2/3)*x));
IntegrationTools:-Expand(int(f1, x));
normal(diff(%, x))  
# Checking


 

@magiblot  From the plot it is clear that the maximum point lies in the third quadrant (x<0, y<0). Then by the mouse I just turned the plot (top view) and took a close point, lying in a triangle (x=-5, y=-5) as an initial point.  For  the minimum point everything is similar.

@Rock  Execute  restart  command at first.

@kuwait1 

KK := unapply(diff(n*x^2, x), x, n); 
KK(2, 2);

@jacob123 


 

gamma__w:=10:

z__0:=2:  z__1:=1:  z__2:=0:

z__3:=-1:   z__4:=-4:   z__5:=-7:

h__0:=2:   h__1:=1:   h__2:=0:

h__3:=0:   h__4:=0:   h__5:=0:

Z:=[seq(z__||n, n=0..5)];
H:=[seq(h__||n, n=0..5)];
eval~(gamma__w * (h-z), map(t->[h,z]=~t,`[]`~(H,Z)));

[2, 1, 0, -1, -4, -7]

 

[2, 1, 0, 0, 0, 0]

 

[0, 0, 0, 10, 40, 70]

(1)


 

Download calc.mw

@mqb  See the edited version above.

First 63 64 65 66 67 68 69 Last Page 65 of 133