Kitonum

21952 Reputation

26 Badges

17 years, 306 days

MaplePrimes Activity


These are answers submitted by Kitonum

Here is a simple calculation of the volume of this body and its drawing. Your body is like a torus. First we calculate the volume of this "torus" without a hole, and then simply subtract the volume of the hole. For drawing we use parametric equations of the surface of this body. For clarity, a cutout of 1/4 of the body is made.

restart;
f:=y->y^2-3: g:=y->y-y^2:
int(Pi*(2-f(y))^2, y=-1..3/2)-int(Pi*(2-g(y))^2, y=-1..3/2); # The volume of the solid
evalf(%);
M:=<cos(t),-sin(t); sin(t),cos(t)>:
P1:=plot3d([convert(M.<f(z)-2,0>, list)[1]+2, convert(M.<f(z)-2,0>, list)[2], z], t=-Pi/2..Pi, z=-1..3/2, color="Blue", scaling=constrained, axes=normal):
P2:=plot3d([convert(M.<g(z)-2,0>, list)[1]+2, convert(M.<g(z)-2,0>, list)[2], z], t=-Pi/2..Pi, z=-1..3/2, color="Red", scaling=constrained, axes=normal):
L:=plottools:-line([2,0,-2.9],[2,0,2.9], color=green, linestyle=3, thickness=2):
plots:-display(P1, P2, L, view=[-4.3..8.1,-6.1..6.1,-2.1..3.1]);

                   

 

To solve this, we can follow the plan:
1. Take a point M inside the pyramid - we can take any linear convex combination of the pyramid's vertices.
2. Find the projections of this point M1 and M2 onto the desired planes.
3. Find the angle alpha between the vectors MM1 and MM2.
4. The required angle is Pi - alpha.

restart;
local D:
with(Student:-MultivariateCalculus):
A, B, C, D, S :=  [0,0,0], [1,0,0], [1,1,0], [0,1,0], [0,0,1]:
p1, p2 := Plane(S,B,C), Plane(S,C,D):
M:=(A+B+C+D+S)/5;
M1:=Projection(M, p1);
M2:=Projection(M, p2);
v1:=convert(M1-M,Vector);
v2:=convert(M2-M,Vector);
Pi-Angle(v1,v2);  # The answer

                               

               

data[2 .. 3];

 

This figure is not bounded and its angles go to infinity in three directions. Therefore, to accurately calculate the area, the integration limits should be changed:

restart;
y0 := -ln(1 - exp(-x)):
y1 := -ln(-1 + exp(-x)):
y2 := -ln(1 + exp(-x)):
Area := int(y1-y2, x=-infinity..0) + int(y0-y2, x=0..infinity);
evalf(Area); 

                               

 

 

restart;
Square:=proc(t, r)
local A, B, M, N, v, R, P, c, s, T;
uses plots, plottools;
A := [-r, 0];
M := <r*cos(t), r*sin(t)>;
v:=M-convert(A,Vector);
R:=<cos(Pi/2),-sin(Pi/2); sin(Pi/2),cos(Pi/2)>;
N:=M + R.v;
P:=N - v;
M, N, P := convert~([M, N, P], list)[];
c:=circle(r, color = blue);
s:=curve([A,M,N,P,A], color=red);
T:=textplot([[A[],"A"],[r,0,"B", align=right],[M[],"M"],[N[],"N"],[P[],"P"]], font=[times,16], align={left,above});
display(c, s, T, scaling=constrained, thickness=2);
end proc:

plots:-animate(Square, [t,1], t=0..2*Pi, frames=90);

       

 


 

restart;

v := 1: a := 0: b := 1: t := 0.1e-2: dt := 0.1e-3: N := 5: h := (b-a)/(N-1):

for i to N do x[i] := a+(i-1)*h end do:
p := x->product(x-x[k], k = 1 .. N);
f := expand(p(x));

proc (x) options operator, arrow; product(x-x[k], k = 1 .. N) end proc

 

x^5-(5/2)*x^4+(35/16)*x^3-(25/32)*x^2+(3/32)*x

(1)

PRime := diff(f, x);

5*x^4-10*x^3+(105/16)*x^2-(25/16)*x+3/32

(2)

for i to N do
for j to N do
 if i <> j then a[i, j] := (eval(PRime, x = x[i]))/((x[i]-x[j])*(eval(PRime, x  = x[j]))) else
 a[i, j] := -add(`if`(k<>i, a[i, k], undefined), k = 1 .. N) end if;  
 end do:
 end do:

seq(seq(a[i,j], i=1..N), j=1..N);

undefined, -1, 1/3, -1/3, 1, 16, undefined, -8/3, 2, -16/3, -12, 6, undefined, -6, 12, 16/3, -2, 8/3, undefined, -16, -1, 1/3, -1/3, 1, undefined

(3)

 


 

Download burgers_type_method_new.mw

A circle does not necessarily pass through 4 points, even if the points lie in the same plane. Therefore, we first find the center of the circle passing through points C, D, H, and then check that point K also lies on the same circle:


 

restart;
_local(D, O);
with(Student:-MultivariateCalculus):
A := [0, 0, 0];
B := [a, 0, 0];
C := [a, b, 0];
D := [0, b, 0];
S := [0, 0, h];
O := [x, y, z];
lineSC := Line(S, C);
lineSD := Line(S, D);
H := Projection(A, lineSC);
K := Projection(A, lineSD);
OH := H - O;
OK := K - O;
OC := C - O;
M := Matrix([OH, OK, OC]);
E:=(C+D)/2;
F:=(C+H)/2;
p1:=Plane(E,convert(C-D,Vector));
p2:=Plane(F,convert(C-H,Vector));
Eq1:=GetRepresentation(p1);
Eq2:=GetRepresentation(p2);
Md:=LinearAlgebra:-Determinant(M);
solve({Eq1,Eq2,Md}, {x,y,z});
O := eval(O, %);
d:=simplify(Distance(O, H));
d1:=simplify(Distance(O, K));
is(d=d1);

A := [0, 0, 0]

 

B := [a, 0, 0]

 

C := [a, b, 0]

 

D := [0, b, 0]

 

S := [0, 0, h]

 

O := [x, y, z]

 

Student:-MultivariateCalculus:-Line([0, 0, h], Vector(3, {(1) = a, (2) = b, (3) = -h}), variables = [x, y, z], parameter = t, id = 1)

 

Student:-MultivariateCalculus:-Line([0, 0, h], Vector(3, {(1) = 0, (2) = b, (3) = -h}), variables = [x, y, z], parameter = t, id = 2)

 

H := [h^2*a/(a^2+b^2+h^2), h^2*b/(a^2+b^2+h^2), h*(a^2+b^2)/(a^2+b^2+h^2)]

 

K := [0, h^2*b/(b^2+h^2), h*b^2/(b^2+h^2)]

 

OH := [-x+h^2*a/(a^2+b^2+h^2), -y+h^2*b/(a^2+b^2+h^2), -z+h*(a^2+b^2)/(a^2+b^2+h^2)]

 

OK := [-x, -y+h^2*b/(b^2+h^2), -z+h*b^2/(b^2+h^2)]

 

OC := [-x+a, -y+b, -z]

 

Matrix(3, 3, {(1, 1) = -x+h^2*a/(a^2+b^2+h^2), (1, 2) = -y+h^2*b/(a^2+b^2+h^2), (1, 3) = -z+h*(a^2+b^2)/(a^2+b^2+h^2), (2, 1) = -x, (2, 2) = -y+h^2*b/(b^2+h^2), (2, 3) = -z+h*b^2/(b^2+h^2), (3, 1) = -x+a, (3, 2) = -y+b, (3, 3) = -z})

 

E := [(1/2)*a, b, 0]

 

F := [h^2*a/(2*(a^2+b^2+h^2))+(1/2)*a, h^2*b/(2*(a^2+b^2+h^2))+(1/2)*b, h*(a^2+b^2)/(2*(a^2+b^2+h^2))]

 

Student:-MultivariateCalculus:-Plane(Vector(3, {(1) = a, (2) = 0, (3) = 0}), [(1/2)*a, b, 0], variables = [x, y, z], id = 1)

 

_m2776775710912

 

x = (1/2)*a

 

(-h^2*a/(a^2+b^2+h^2)+a)*x+(-h^2*b/(a^2+b^2+h^2)+b)*y-h*(a^2+b^2)*z/(a^2+b^2+h^2) = (-h^2*a/(a^2+b^2+h^2)+a)*((1/2)*h^2*a/(a^2+b^2+h^2)+(1/2)*a)+(-h^2*b/(a^2+b^2+h^2)+b)*((1/2)*h^2*b/(a^2+b^2+h^2)+(1/2)*b)-(1/2)*h^2*(a^2+b^2)^2/(a^2+b^2+h^2)^2

 

-h^2*a*(a^2*b*h-a^2*b*z-a^2*h*y+b^3*h-b^3*z-b^2*h*y)/((a^2+b^2+h^2)*(b^2+h^2))

 

{x = (1/2)*a, y = (1/2)*b*(b^2+2*h^2)/(b^2+h^2), z = (1/2)*h*b^2/(b^2+h^2)}

 

[(1/2)*a, (1/2)*b*(b^2+2*h^2)/(b^2+h^2), (1/2)*h*b^2/(b^2+h^2)]

 

(1/2)*(((b^2+h^2)*a^2+b^4)/(b^2+h^2))^(1/2)

 

(1/2)*(((b^2+h^2)*a^2+b^4)/(b^2+h^2))^(1/2)

 

true

(1)

 


 

Download center_circle.mw

In this example, it's easier to do it manually, using the empty symbol  ``   to prevent automatic bracket expansion:

restart;
p:=9*csc(theta)^2+9;
9*``(p/9);

 

evala(M);

 

You can use a special program for this. See  https://mapleprimes.com/posts/200677-Partition-Of-An-Integer-With-Restrictions

Examples of use:

Partition(10, 4, 1..4);  # Your problem.
``;
Partition(10, 4, {1,3,5,7,9});  # Partitions of length 4 consisting only of odd numbers.
``;
Partition(10, 1..10, {1,3,5,7,9});  # Any partitions of odd numbers.

         

 

 

A:=int(x^(1/2),x);
sqrt(A^2);

                                     

We used the fact that for any non-negative real number  A = sqrt(A^2) . This technique is often useful.

The  has(a, b)  command returns true if  b  is an operand of  of some level (in this case we say that  b  is a subexpression of  a ) . The operands are returned by the op command. See

restart;
A:=I/sqrt(a);
B:=op(A);
op(B[2]);
has(A,a^(-1/2));
has(A,-1/2);

                       

In the help for the  Algebraic:-Remainder(a, b, x, options) command it is written: "The arguments a and b must be univariate polynomials in the variable x, which is typically a name. If other names or non-algebraic sub-expressions are included and they cannot be evaluated to algebraic numbers, an "unable to divide multivariate polynomials" error will be returned". So use he standard command  rem :

restart;
rem(a*x^3 + b*x^2 + c*x + d, 3*a*x^2 + 2*b*x + c, x);

 

Use the  empty symbol  ``  for this.

Example:

restart;
plot(sqrt(x), x = 0 .. 4, tickmarks = [[seq(i=``,i=0..4)], [seq(i=``,i=0..2)]], scaling=constrained);

                               

First 9 10 11 12 13 14 15 Last Page 11 of 292