Kitonum

21670 Reputation

26 Badges

17 years, 184 days

MaplePrimes Activity


These are replies submitted by Kitonum

Maximum to be found on the set, which is a broken line on the plane:

solve({(x - 1)*(y - x) >= 0, (7 - y)*(1 - x) >= 0, (x - y)*(y - 7) >= 0, x>=-2, x<=3, y>=0, y<=11});

Mathematica solves this inequality directly:

Mathematica solves this inequality directly:

@Markiyan Hirnyk 

You have polished my idea to perfection!

@Markiyan Hirnyk 

You have polished my idea to perfection!

Carl Love

Your procedure is wrong.  For example tau(24)=8 .  24<30 .

Carl Love

Your procedure is wrong.  For example tau(24)=8 .  24<30 .

To  Markiyan Hirnyk

To find  a smaller set having this property is easy without Maple - just remove any 6 elements of the given set of 16 elements.

I do not know of another type of solutions than those that can be obtained apparent transformations: reflections and rotations.

To  Markiyan Hirnyk

To find  a smaller set having this property is easy without Maple - just remove any 6 elements of the given set of 16 elements.

I do not know of another type of solutions than those that can be obtained apparent transformations: reflections and rotations.

@Axel Vogt

 There are infinitely many rational solutions. All of these solutions can be obtained as follows: set any rational values ​​to variables  x  and  y  and solve the resulting equation for  z .

@Axel Vogt

 There are infinitely many rational solutions. All of these solutions can be obtained as follows: set any rational values ​​to variables  x  and  y  and solve the resulting equation for  z .

If you fix all of these errors, the procedure is correct. Since you find  the zeros not of the function but its derivative, so the first argument of the procedure should be the derivative (or correct the text of the procedure appropriately):

prcNewton(x->cos(x^2)*2*x+1, 1.0);

                  2.115121021

If you fix all of these errors, the procedure is correct. Since you find  the zeros not of the function but its derivative, so the first argument of the procedure should be the derivative (or correct the text of the procedure appropriately):

prcNewton(x->cos(x^2)*2*x+1, 1.0);

                  2.115121021

Formulation of the problem is unclear!  What is 10P4?

I agree that the machinery of the bug is still unclear. But why my code can not be treated as a workaround? Here's another variant for any range:

restart;

X:=[seq(k, k=-20..20, 0.1)]:

Y:=[]:

for k from 1 to 401 do

a:=solve(eval(sqrt(x^2+y^2)=sqrt((x-4)^2+(y-3)^2)+5, x=X[k])):

if a<>NULL then

Y:=[op(Y), [X[k], a]]: fi:

od:

plot(Y, thickness=3, scaling=constrained, view=[-20..20, -16..16]);

First 124 125 126 127 128 129 130 Page 126 of 133