MaplePrimes Questions

Can someone confirm, that autosave is not implemented for workbooks?

The only thing I can restore form a workbook session are specific worksheets of the workbook that I was working on.

None of the Maple codes are saved for example.

This is a major issue, folks. If you haven't implemented it, you need to tell us about it in the help document.

IN CAPITAL LETTERS!

Hi all,

Do you know how one can ask Maple to show expressions involving special functions using their"classical symbols" instead of the associated Maple's command ?

Thanks !

Kevin

I following a example of products multiplication like this one

u:=n->Product(2*k-1,k=1..n)/Product(3*k-1,k=1..n)*x^n;

Calculating with  this with maple 1d input is correct, but when i convert a maple 1d input  to 2D input ( i did somewhere) and use this then there is difference with the maple 1d calculation

Seems to be not a advisable to use converted maple 1d to 2 D input for calculation : ( for a mixed calculation(maple input/2D input)  or solely 2d input) , but only for purpose of seeing what the expression in maple input is standing for.   

Note: i did the calculation again with mixed input and now the correct sequenze of answers shows up ?

Just wanted to post that I had some data loss because I opened two different workbooks with the same name from different locations.

This could lead to loss of data.

I had code attachments from the "old" workbook implemented in the "new" workbook, while the new code was gone.

The prime notation as used default on my keyboard is not the same as used in Maple.

NULL

restart;

with(student):

interface(typesetting = extended);

extended

(1)

Typesetting:-Settings(typesetprime = true);

true

(2)

diff(y(x), x)

diff(y(x), x)

(3)

y*`\`   `and  diff(y(x), x)are not working on my keyboard as prime?

 prime symbols (not showed)  not as (3)

 ========================================

restart

kernelopts(version)

`Maple 2021.1, X86 64 LINUX, May 19 2021, Build ID 1539851`

(4)

interface(typesetting = extended)

diff(y(x), x)

diff(y(x), x)

(5)

Typesetting:-Settings(typesetprime = true)

diff(y(x), x)

diff(y(x), x)

(6)

"y^((3))"

diff(diff(diff(y(x), x), x), x)

(7)

PDEtools:-declare(y(x))

y(x)*`will now be displayed as`*y

(8)

diff(y(x), x)

diff(y(x), x)

(9)

"y^((3))"

diff(diff(diff(y(x), x), x), x)

(10)

PDEtools:-declare(f(x, y))

f(x, y)*`will now be displayed as`*f

(11)

diff(f(x, y), y, x, y)

diff(diff(diff(f(x, y), x), y), y)

(12)

=================================================

Application Differential equation :  

int((10000*k/(100*k*P(t) - 1) - 100/P(t))*diff(P(t), t), t = 0 .. t) = t;

int((10000*k/(100*k*P(t)-1)-100/P(t))*(diff(P(t), t)), t = 0 .. t) = t

(13)

P(t)=solve(%,P(t));

Error, (in solve) cannot solve expressions with diff(P(t), t) for P(t)

 

This error .. see  Applications to Differential Equations

Applications to Differential Equations

   

 

NULL

Download vraag_over_dv_in_harald_pleym_-error_.mw

Also a error in old studymaterial : how to be fixed ? ...or obselote now this calculation and must be replaced for a modern calculation in Maple ?

question8.mw

In the exercise uploaded I have to plot asymptotes of a function. I know this is possible using definitions of all kind of asymptotes and ploting in a figure. However I would like to know if exists some parameter for plot method that automatically show asymptotes.

question7.mw

NULL

***e2.106

 

Plot this couple of parametric equations, identify the geometric figure known as the folium of Descartes , and relate properties of the figure to numerical coefficients in the equations.

  x = 3*t/(t^3+1), y = 3*t^2/(t^3+1)   

NULL

restart: with(plots):

 

 

 

See how the plot of the folium of Descartes can be built with the following code:

d1 :=

Error, invalid terms in product: -10 .. 10

Error, invalid terms in product: -10 .. 10

Error, (in plots:-pointplot) points cannot be converted to floating-point values

NULL

NULL

Download question7.mw

For this question I need that who help me focus in second block of code in the document. Basically, what I am trying is to get a plot of folium of Dercastes using parametric equation to plot ordered pairs. In order to success, is needed to exclude t=-1. In the block is showed what I tried. I concluded that my approach in solving that part of exercise is wrong. What could be a well approach?

I have to do this  diff(f(x), x) = f(1/x), f(0) = 0 , but it gives me the error on solution := dsolve(equations) :Error, (in dsolve) found the indeterminate function f with different arguments {f(x), f(1/x)} and I know what to do, please help me

Thought always that the round d is reserved for function of two variables x,y , but  that seems to be not the case here ?

restart;

Comparing Different Answers

 

Een antwoord ergens gegeven is

Int(sqrt(x^2+1), x) = (1/2)*x*sqrt(x^2+1)+(1/2)*ln(x+sqrt(x^2+1)) + C                                                             (vb)

 

Mple geeft

 

Int(sqrt(x^2+1),x)=int(sqrt(x^2+1),x)+C[1];

Int((x^2+1)^(1/2), x) = (1/2)*x*(x^2+1)^(1/2)+(1/2)*arcsinh(x)+C[1]

(1)

 

De twee antwoorden lijken nog niet opelkaar !
In het gegeven antwoord staat er een ln en in Maple kan een expressie omgezet worden in ln termen
  

convert(%,ln);

Int((x^2+1)^(1/2), x) = (1/2)*x*(x^2+1)^(1/2)+(1/2)*ln(x+(x^2+1)^(1/2))+C[1]

(2)

(2)  is hetzelfde (vb)

Dezelfde integraal i sook gegeven als

Int(sqrt(x^2+1),x)=((x+sqrt(x^2+1))^2+4*ln(x+sqrt(x^2+1))-(x+sqrt(x^2+1))^(-2))/8+C[2];

Int((x^2+1)^(1/2), x) = (1/8)*(x+(x^2+1)^(1/2))^2+(1/2)*ln(x+(x^2+1)^(1/2))-(1/8)/(x+(x^2+1)^(1/2))^2+C[2]

(3)

Controle

een effectieve manier om twe antwoorden t evergelijken voor hetzelfde probleem is het verschil te berekenen van een vergelijking met de twee integralen

#lhs(%);

#rhs(%%);

 

#diff(lhs(%)-rhs(%)=0,x);

NULL

#diff(f,x);

diff(lhs(%)-rhs(%)=0,x);

(x^2+1)^(1/2)-(1/4)*(x+(x^2+1)^(1/2))*(1+x/(x^2+1)^(1/2))-(1/2)*(1+x/(x^2+1)^(1/2))/(x+(x^2+1)^(1/2))-(1/4)*(1+x/(x^2+1)^(1/2))/(x+(x^2+1)^(1/2))^3 = 0

(4)

simplify(%);

0 = 0

(5)

Strange that  diff(lhs(%)-rhs(%)=0,x);  is translated by 2 d input with round d notation for functions with two variables ?
The two integrals are functions of one variable
diff(f, x)

Download Controleren_dezelfde_antwoord_voo_expressies.mw

Here is a problem that I recently had to solve and I really liked it. I recommend it to all Maple fans:

"The contour of the Christmas tree on the occasion of the New Year 2022 is a triangle, which is divided into 7 small triangles, the bases of which are parallel. The areas of triangles and the star are measured in snowflakes, the values of which are presented on the balls (of course, the number of snowflakes must be integer). It is necessary to determine the areas of triangles, on the balls of which there are no numbers".

At first glance it seems that the area of the star is not related to the problem, but it is not. This will become clear only after the problem is solved.

                          alt text


 

Hi! I want to make animation from the sequence below to download but it's not working I mean that it's ok when I want to see animation on display but it cannot be seen as something like "display(seq(...,a=1..100),insequence=true)" which is easy to export

restart;
with(Fractals:-EscapeTime);
with(ImageTools);
with(plots);
M := seq(Mandelbrot(500, -0.17225 - evalf(a/100000) + (0.660347 + evalf(a/100000))*I, -0.17115 - evalf(a/100000) + (0.66116 + evalf(a/100000))*I, iterationlimit = 3000, output = layer1, cutoff = 10000), a = 1 .. 100);
seq([Embed(M[j])], j = 1 .. 100);

How to insert icons in a plot at given coordinates as shown below:
 

question6.mw
How you can see, in the following exercise I built five plots, every one with the graph of two functions. The exersise say that I must find coordinates of any intersection. I think I can do it with solve command. However, I want point out coordinates of  intersections inside the plots. Probably exists a command or a parameter to success with my objetive. How can I do it?

NULL

*** e2.103

 

Plot the following couples of formulae; note in particular the contrasting forms of two curves in each case, and find the coordinates of any intersections.

i)    {x, x^3},

ii)    {x^2, x^4},

iii)    {1/x, 1/x^2},

 iv)   {x^2, sqrt(x)},

 v)   {x^3, abs(x^(1/3))}

 

restart:

NULL

Thank you for helping me;
Greetings;
Lic. Marcus Vinicio Mora Salas;
Chemist;
Postgraduate student at University of Costa Rica;

Download question6.mw

restart:

``

K__vxa[1] := 2.0154553049*10^17

0.2015455305e18

(1)

`#mrow(mi("\`K__vxa\`"),mfenced(mn("1"),open = "[",close = "]"))`+K__vxa[1]

`#mrow(msub(mi("\`K"),mi("vxa\`")),mfenced(mn("1"),open = "[",close = "]"))`+0.2015455305e18

(2)

``

Download Prj.mw

(Maple 2015)

Why is m1(t) not evaluated correctly when I use a compound condition?

restart:
m2(t) = piecewise(x1(t) < c and v1(t) < 0, 1,  0);
       m2(t) = piecewise(x1(t) < e2 and v1(t) < 0, 1, 0)

m1(t) = piecewise(x1(t) = c and v1(t) > 0, 0,  1);
                           m1(t) = 1

This doesn't happen for simple conditions
 

m2(t) = piecewise(x1(t) < c, 1,  0);
m1(t) = piecewise(x1(t) = c, 0,  1);
               m2(t) = piecewise(x1(t) < c, 1, 0)
               m1(t) = piecewise(x1(t) = c, 0, 1)

TIA

First 227 228 229 230 231 232 233 Last Page 229 of 2308