Kitonum

21530 Reputation

26 Badges

17 years, 92 days

MaplePrimes Activity


These are replies submitted by Kitonum

Here is another way to draw a similar curve using parametric equations. This method makes it easy to animate this curve:

plots:-animate(plot,[[sin(t)^3, 13*cos(t)/15-cos(2*t)/3-2*cos(3*t)/15-cos(4*t)/15, t = -Pi .. a], color=red, thickness=3, scaling=constrained], a=-Pi..Pi, frames=90, axes=none, paraminfo=false);

                     

 

@JAMET  But you have already received instructions from  vv  on what to do so that there is no confusion between  parabola and ellipse.

@bstuan Submit your code here (as text not an image) or upload your worksheet here. You may have forgotten to download the LinearAlgebra package when using the  CrossProduct  command. Should be the  LinearAlgebra:- CrossProduct  command. 

@vv  For these examples, the  expand command does the work. But everyone would like the simplify command to do the same.

expand(tan(x+k*Pi))    assuming   k::integer;
expand(sin(x+2*k*Pi)) assuming   k::integer;

 

@Emrah Akyar It doesn't matter what names you use. If you make this assignment  H:=G , then why can't you immediately name the original graph as  , and call the new modified graph through  G . Your code will become shorter and simpler.

@nm  For large values  n>20  it is better to use the commands of the  Iterator  package: Iterator:-Permute  or  Iterator:-CartesianProduct .

@GEEMIC Yes. Just replace non-strict inequalities with strict ones and change the  axes  option:

restart;
A:=plot(1/x, x=0..3, 0..3, thickness=2):
B:=plots:-inequal({x>0,x<1}, x=0..3,y=0..3, optionsfeasible = [color = "LightBlue"]):
plots:-display(A,B, axes=frame);

 

@vv  Thank you. If we add up the areas of all triangles, we get for each of the two solutions  x+y+z+1003 = 1922 , 1922+100 = 2022

Everyone can see my solution at the link 
http://math.hashcode.ru/questions/237436/%D0%B3%D0%B5%D0%BE%D0%BC%D0%B5%D1%82%D1%80%D0%B8%D1%8F-%D1%91%D0%BB%D0%BA%D0%B0-%D0%B2-%D1%82%D1%80%D0%B5%D1%83%D0%B3%D0%BE%D0%BB%D1%8C%D0%BD%D0%B8%D0%BA%D0%B0%D1%85

@mehdibaghaee I don't know how you got it, you probably used palettes to enter these expressions. I advise you to use 1Dmath input instead of palettes and 2Dmath input, then such problems will disappear.

@Dkunb  I do not have Maple 2021 (only Maple 2018 and older), so I cannot check how the code works in your version of Maple.

@Dkunb  Strange, in Maple 2018 this code works as expected. Did you do  restart  in the beginning? Your screenshot doesn't show it.

@jud  vv have already answered you that this problem can probably only be solved numerically.

@vv  Thank you. I found the reason for the disappearance of this solution. I missed one condition in ListTools:-Categorize command. If we add it, then the tetrahedron you specified appears. I will now edit my answer.

@vv  The volume of this tetrahedron is 21 (not 210) and it is on my list.

@mmcdara  I use Maple 2018.2

First 10 11 12 13 14 15 16 Last Page 12 of 133