Gabriel Barcellos

MaplePrimes Activity


These are questions asked by Gabriel Barcellos

Given a graph, as in the example below, I need all of them to have the same size, for example, 7 cm horizontally and 4 cm vertically. Is there a command to standardize the entire graph?

I have to follow certain dimensions that Maple usually does not show when adjusting the graph size with the mouse.

with(plots);

NMC := [0, ln(2)], [6, ln(2)];
plot([NMC], color = black);

Thank you so much!

I need to automatically solve this system, that is, both equations simultaneously for different intervals of T that I define. For example, from T=0.1 to 4, then from 4.5 to 5 and from 7 to 8 with distinct subdivisions between them, the first varying by 0.1, the second by 0.05 and the third by 0.25. Furthermore, the index that accompanies m and G is only illustrative. Would anyone know how to help me?

Thank you for your help!

I apologize for putting the equations in image format, but I thought that this way the community could better understand how to interpret the equations.

Below are 6 letters whose solution must be developed step by step so that the periodic extension of each one can then be done. I can solve all the letters by hand (solving in the notebook), but my big question is, how can I do the commands in Maple step by step so that I can solve them as if I were doing them by hand (look like in my notebool)? I need to check step by step. I would be extremely grateful for the help of any of you.

second part

As I am new to using the statistics package, I have some doubts about how to perform certain operations in Maple.

For example, let sigma be a variable containing any real number, finding the average is easy, just use the command A0:=Median(sigma) and if you want A (see image below) just take A1:=A0^2. However, the terms that make up <sigma^2> cause a certain difficulty, how to do this? In other words, calculate the B of the image?

sigma := [2, 4, 0, 6]

AMedia := (2 + 4 + 0 + 6)/4;
AMedia1 := AMedia^2;

 

A0 := Median(sigma)

A1 := A0^2

BMedia := (2^2 + 4^2 + 0^2 + 6^2)/4

sigma0 := sigma^2

sigma1 := Mean(sigma0)

.......................................................................................

I need to highlight all terms that contain eta, my variable, for example (A0)+(A1)*1/eta+(A2)*1/eta^2+...(An)**1/eta^n and so on in my expression call from P. However, when I select eta through the collect command, maple is unable to carry out the command.

P := expand((cosh(k*eta) + alpha*m*sinh(k*eta)/eta)^3);
P := convert(P, exp);
P := expand(P);
P := collect(P, eta);
P := combine(P);

Once these have are in evidence I need to select the coefficients A0, A1, A2, etc. How to proceed if eta are in the denominator and maple does not work with this possibility? This it'was my tentative

B0 := subs(eta = 0, P);

B1 := coeff(P, eta)

B2 := coeff(P, eta^2)

I actually tested the possibility of  1/eta instead of  eta and it didn't work

1 2 3 Page 1 of 3