MaplePrimes Posts

MaplePrimes Posts are for sharing your experiences, techniques and opinions about Maple, MapleSim and related products, as well as general interests in math and computing.

Latest Post
  • Latest Posts Feed
  • With this application, the differential equation of forced systems is studied directly. It comes with embedded components and also with native Maple code. Soon I will develop this same application with MapleSim. Only for engineering students.

    Damped_Forced_Movement.mw

    Lenin AC

    Ambassador of Maple

    One of the most interesting help page about the use of the Physics package is Physics,Examples. This page received some additions recently. It is also an excellent example of the File -> Export -> LaTeX capabilities under development.

    Below you see the sections and subsections of this page. At the bottom, you have links to the updated PhysicsExample.mw worksheet, together with PhysicsExamples.PDF.

    The PDF file has 74 pages and is obtained by going File -> Export -> LaTeX (FEL) on this worksheet to get a .tex version of it using an experimental version of Maple under development. The .tex file that results from FEL (used to get the PDF using TexShop on a Mac) has no manual editing. This illustrates new automatic line-breakingequation labels, colours, plots, and the new LaTeX translation of sophisticated mathematical physics notation used in the Physics package (command Latex in the Maplesoft Physics Updates, to be renamed as latex in the upcoming Maple release). 

    In brief, this LaTeX project aims at writing entire course lessons or scientific papers directly in the Maple worksheet that combines what-you-see-is-what-you-get editing capabilities with the Maple computational engine to produce mathematical results. And from there get a LaTeX version of the work in two clicks, optionally hiding all the input (View -> Show/Hide -> Input).

    PhysicsExamples.mw   PhysicsExamples.pdf

    PS: MANY THANKS to all of you who provided so-valuable feedback on the new Latex here in Mapleprimes.

    Edgardo S. Cheb-Terrab
    Physics, Differential Equations and Mathematical Functions, Maplesoft

    If you are interested in experimenting with simple antenna arrays, this worksheet may prove useful.  I have provided a few examples of arrays that repeat in the x, y and z directions, but it will be very easy to tweak this tool if you are more interested in circular or triangular arrays.

    This is one of the example arrays:

    Antenna_arrays.mw

    antenna_arrays.pdf

    In two recent questions

    dnaviaux  raised concerns about saving informations he could include in a typeset report.

    In the first question these informations were mainly printf terminal outputs, while the second question was oriented to informations of type Table (in the sense of DocumentTools:-Layout:-Table).

    Acer has given a direct answer to this last question.
    On my side I proposed a less direct one based on a LaTeXapproach.


    Since several years I use to generate a LaTeX source code for typeset reports directly from Maple (this is not very difficult once you know LaTeX).
    These reports often contain data tables Mbut latex(M)is not the good way to code these data tables into LaTeX.
    That is why I turned towards the LaTeX/tabularstructure

    \begin{tabular}{...}
    ...
    \end{tabular]


    Data tables are very simple structures and converting them programmatically from Maple Matrix into  LaTeX tabular is rather simple: the most important thing you must remember is that some characters have a special role in LaTeX  (for instance "\" , "_" and "$") while having a special meaning in Maple too: so beware of conflicts.

    The procedure Tabular in the attached file takes as argument a Matrix and returns the LaTeX code of its tabular counterpart.
    Note that it could be easily extendend to accept a DataFrameas input.
    This is a very simple simple version and fonts (\rm, \bf, \it... or others), styles (\scriptsize, \large, ...) and much more customization features could be accounted for without any difficulty.

    For this particular example inspired by dnaviaux first question, it would be probably better to replace the LaTeX code by one of thes two:

    \begin{tabular}{|c @{ $\pm$  } c|}
    ....
    Asdfsdg & +5.190e+01 & 2.5950e+00 \\ 
    

    or :

    \begin{tabular}{|c|c|}
    ....
    Asdfsdg & \multicolumn{2}{c|}{$+8.680e-01 \pm 0.9190$} \\ 





    dnaviaux second question concerned a DocumentTools:-Layout:-Table object.
    For what I understood this table has a simple structure (no rowspan neither columnspan used).

    But, knowing that tabular can manage merged columns (\multicolumn) and merged rows (\multirow, provided the ad hoc pasckage is used), I wondered if it would be possible to generate the LaTeX/tabular code corresponding to a Table using rowspan and columnspan?

    This is done by the procedure Tabular_Table in the attached file.
    Here again this is a very simple procedure which doesn't exploit all the informations a Table structure contains (backgroundstylefillcoloralignalignmentseparator [Tabular_Table separates all columns and rows] ...).

    The "raw" rendering is not bad but could be improved:

    • adjust the way \multirowcenters the content of a cell (Xis badly placed in example 3)
    • adjust the spaces between line/clineand the text
      • by using the package cellspace 
      • or my modufying \arraystretch with \renewcommand.
    • one could also add a legend with \caption
    • parameterize Tabular_Table to accept other column separators
    • manage the colors (for instance a blue for a math expression and a black for a text)
    • ...

    Finally Tabularand Tabular_Tablecould have an optional argument file:

    {file::{symbol, string}:= terminal} 

    set by default to terminalor wich could be the name of a  .texfile 


    This work is still under developpement and I would be happy to exchange with you on this topic.
    Happy New Year to all of you

     

    Tabular_from_Maple.mw

    Here is the content of the .tex file (I used Welcome-to-CoCalc.texto create/compile it)

    \documentclass{article}
    
    % set font encoding for PDFLaTeX, XeLaTeX, or LuaTeX
    \usepackage{ifxetex,ifluatex}
    \if\ifxetex T\else\ifluatex T\else F\fi\fi T%
      \usepackage{fontspec}
    \else
      \usepackage[T1]{fontenc}
      \usepackage[utf8]{inputenc}
      \usepackage{lmodern}
    \fi
    
    \usepackage{hyperref}
    
    % DO NOT FORGET THIS PACKAGE !!!
    \usepackage{multirow}
    
    \title{Tabulars from Maple}
    \author{mmcdara}
    
    
    \begin{document}
    \maketitle
    
    \begin{itemize}
    \item[\bf{Example 1}]
    
    \begin{tabular}{|c|c|c|}
    \hline 
    \hline 
    Quantity & Nominal value & Uncertainty \\ 
    \hline 
    Asdfsdg & +9.060e+01 & 4.5298e+00 \\ 
    \hline 
    Bdfg & +1.437e+01 & 7.1870e-01 \\ 
    \hline 
    C123 & +8.025e+01 & 4.0125e+00 \\ 
    \hline 
    Ddf sdfg dsfg  & +9.614e+00 & 4.8072e-01 \\ 
    \hline 
    \hline 
    \end{tabular}
    
    \item[]\vspace*{10mm}
    
    \item[\bf{Example 3}]
    
    \begin{tabular}{| c | c | c | c | c |}
    \hline 
    \multicolumn{1}{|c|}{\multirow{4}{*}{X}} & \multicolumn{2}{c|}{\multirow{1}{*}{A1}} & \multicolumn{1}{c|}{\multirow{2}{*}{A2}} & \multicolumn{1}{c|}{\multirow{1}{*}{A3}} \\ 
    \cline{2-2} 
    \cline{3-3} 
    \cline{5-5} 
     & \multicolumn{1}{c|}{\multirow{2}{*}{B1}} &\multicolumn{1}{c|}{\multirow{1}{*}{B2}} & & \multicolumn{1}{c|}{\multirow{3}{*}{B3}} \\ 
    \cline{3-3} 
    \cline{4-4} 
     &  & \multicolumn{2}{c|}{${\cos \left( \omega\,t+\phi \right) }^{\mathstrut}_{\atop{}{\mathstrut}}$} &  \\ 
    \cline{2-2} 
    \cline{3-3} 
    \cline{4-4} 
     & \multicolumn{3}{c|}{${{\frac {1}{\Gamma  \left( x \right) }\sqrt {{{\rm e}^{-{\frac {{t}^{2}}{\pi }}}}}}}^{\mathstrut}_{\atop{}{\mathstrut}}$} &  \\ 
    \hline 
    \end{tabular} 
    
    \end{itemize}
    
    \end{document}


    Image of the resulting PDF:

     

    For comparison here is the Tableof Example 3 that Mapledisplays in the worksheet

    Hello everyone,

    There is a strange behaviour with code-edit. Namely, when hiding code-edit window and recovering it, sometimes Maple create a very narrow window. It is very hard to see the code that way. After a while the code-edit region window readjusts itself though. However it takes time.

    Also another thing, it would be useful when searching in a worksheet, to have an option that allows to search in code-edit region also.

    Best regards,

    A customer wondered if they could create a plot of points on a polar axis, and if they could zoom a polar plot.

     We suggested a couple of options for making these plots, and (although zooming is not supported in polar coordinates in Maple 2020) an alternative to manually scale a polar plot.

    Hope it's a useful demonstration.

    rho := [seq(i, i = 1 .. 10)];
    theta := [seq((2*j*Pi)/10, j = 1 .. 10)];
    nby2 := zip(`[]`, rho, theta);
    
    # Method A of plotting points in polar basis
    with(plots);
    pointplot(rho, theta, coords = polar, axiscoordinates = polar, connect = false, color = "HotPink", symbol = soliddiamond);
    
    #Method B to create polar point plot
    polarplot(nby2, style = point, color = "green", symbol = solidbox);
    
    #narrow view of polar plot around first point as a substitute for zooming
    polarplot(nby2, style = point, color = "OrangeRed", symbol = solidcircle, coordinateview = [0 .. 2, Pi/5 - Pi/20 .. Pi/5 + Pi/20])
    
    

    Download polar-point-plot-with-zoom.mw

    Recently I came back on the general problem of drawing the syntactic graph of a mathematical expression.
    Probably some of you have already done this as students for it is a classic when you learn recursive procedures, chained lists or graphs.

    I wasn't interested in doing this with Maple, because Maple had already done  a part of the job thanks to the procedure ToInert.
    More of this, the package GraphTheory seemed to possess all the required features to obtain quickly this syntactic graph.
    Nevertheless it took me a lot of time to fix (almost all) the problems.
    The issues are mainly of two orders:

    1. ToInert is very verbose: a necessary feature when you want to have a non ambiguous syntax of an expression, but partly useless for simple visualization.
      Here is an example
      ToInert(f(x))
      _Inert_FUNCTION(_Inert_NAME("f"), _Inert_EXPSEQ(_Inert_NAME("x")))

       

    2. GraphTheory 
      Once the inert form of the expression is known, it is necessary to put it in a form that can be manipulated by the procedures of the GraphTheory package.
      More precisely one needs to transform this inert form into a set of lists [a, b], where a and b are two neighboring vertices of the syntactic graph and [a, b] the directed arc from a to b.
      As the syntactic graph is a tree, this implies using edges {a, b} instead of arcs [a, b].
      The problem is that some operators are commutative while others are not: for the latter this means that the edges and vertices on the syntactic graph must appear in an order that respects the non-commutativity.
      Here his a toy example where I manually buid the syntactic graphs of a/b and b/a: the two graphs are identical and this comes from the fact that edges in Graph( edges )  must be a set, thus an ordered structure whose order doesn't care about non-commutativity.

      restart:
      with(GraphTheory):
      # The first is aimed to represent the expression a/b
      # while the second is aimed to represent the expression b/a
      Gdiv := Graph({{"/", "a"}, {"/", "b"}}):
      g1 := DrawGraph(Gdiv, style=tree, root="/", title=a/b):
      
      Gdiv := Graph({{"/", "b"}, {"/", "a"}}):
      g2 :=DrawGraph(Gdiv, style=tree, root="/", title=b/a):
      
      plots:-display(<g1 | g2>)
      

      Download ab_ba.mw

       

    After several attempts, I decided to discard the GraphTheory package, that is to deprive myself of all the interesting features one needs to manipulate a graph.

    The result is given on the attached file (... and the content of the worksheet can't be loaded as usual).

    Download Syntactic_Graph.mw

    Here is an example


    Twelve test cases are given, all the corresponding syntactic graphs are correct, but one of them (test case iexpr=1) seems incorrect because the right child of a parent P is located to the right of the left child of a parent P', even though P' is to the right of P.
    This could be corrected by modifying the way the posiitons are computed in procedure Place.


    PS : It doesn't seem that Maple has a built-in procedure to construct the syntactic graph of a mathematical expression.
    But maybe I'm wrong?


     

     

    In the two examples below (in the second example, the range for the roots is simply expanded), we see bugs in both examples (Maple 2018.2). I wonder if these errors are fixed in Maple 2020?
     

    restart;

    solve({log[1/3](2*sin(x)^2-3*cos(2*x)+6)=-2,x>=-7*Pi/2,x<=-2*Pi}, explicit, allsolutions); # Example 1 - strange error message
    solve({log[1/3](2*sin(x)^2-3*cos(2*x)+6)=-2,x>=-4*Pi,x<=-2*Pi}, explicit, allsolutions);  # Example 2 - two roots missing

    Error, (in assume) contradictory assumptions

     

    {x = -(11/3)*Pi}, {x = -(10/3)*Pi}

    (1)

    plot(log[1/3](2*sin(x)^2-3*cos(2*x)+6)+2, x=-7*Pi/2..-2*Pi);
    plot(log[1/3](2*sin(x)^2-3*cos(2*x)+6)+2, x=-4*Pi..-2*Pi);

     

     

    Student:-Calculus1:-Roots(log[1/3](2*sin(x)^2-3*cos(2*x)+6)=-2, x=-7*Pi/2..-2*Pi);  # OK
    Student:-Calculus1:-Roots(log[1/3](2*sin(x)^2-3*cos(2*x)+6)=-2, x=-4*Pi..-2*Pi);  # OK

    [-(10/3)*Pi, -(8/3)*Pi, -(7/3)*Pi]

     

    [-(11/3)*Pi, -(10/3)*Pi, -(8/3)*Pi, -(7/3)*Pi]

    (2)

     


    I am glad that  Student:-Calculus1:-Roots  command successfully handles both examples.

     

    Download bugs-in-solve.mw

    Spectroscopy is both qualitative and quantitative, so one can use spectral data tables of elements to do some fairly accurate Light Engineering.

    Some nifty emulation of the spectral distributions of many non-LED popular lamps, which allows for direct utility calculations based on many different parameters including chromaticity, space type, lifetime, occasion, application, cost and efficiency. 7 such parameters are used with constrained weight optimization to fish out some of the more popular lamp types used in many situations today.

    References (inline) the following docs:

    The Science of Color, the Emission Spectra of the Elements and Some Lamp Engineering Applications

    and

    The Double Amici Prism Hand-held Spectroscope

    First link main Theory, second link experimental verification.

    Usage: Maple 18 main document code with library and data files. Download, unzip and run document for some quick results. Don't move library/data files relative to main doc. For further results and particular details, such as particular spectra & lamps, UN-comment the relevant commands in sections and execute individually after you have executed the entire sheet at least once.

    Will be modified some time later to deal with LEDs. Based on elemental spectral data published by NIST. Suggestions 4 Improvements/Errors @ followup, here.

    Elements.zip

    For sample pics generated with the above code, click on the first reference link. All pictures therein were generated using this code.

    --

    Cheers,

    Yiannis

    A customer wondered if it was possible to create 2-line tickmarks on Maple plots like so

     

     

    We achieved this using typeset, fractions, and backticks. Worksheet follows.

    2line-tickmarks-mprimes.mw

     

    Hi,
    This post is inspired by a recent question maple least square fit error... where the OP was simulating what appeared to be a stochastic process known as the Drunkard's walk (see for instance The_Drunkard's_Walk).


    In the case of the PO, the drunk took a step forward or a step backward (say along a narrow, long corridor) with equal probabilities. In addition one assumes that the step the drunkhard takes is independent of all the steps he did before.
    His move is what is called a (1D) Random_walk

    This little application based on MAPLETS (ok, I know that some people see them as old-fashioned technology).

    It draws a sequence of several drunkard's walks, all of identical number of steps, and interactively plots the current histogram of the arrival point (the point where he is at the end of his walk -which should be the door if the same pub he started from if he is an inveterate drunkhard or if he knows a little about statistics- ).

    The code contains 2 procedures :

    • f_step_by_step (n, Discrete=false/true) 
      n : number of steps
      Discrete = false (default value) plot the histogram of the arrivals point as if these points were realizarions of a continuous random variable
      In this simple model these arrivals can take only integer values between -n and +n included; the Discrete=true option is recommended but it takes more walks for it to converge to the asymptotic distribution (see below).

      Once launched, f_step_by_step opens a maplet containing a Plotter and 2 buttons. A first walk is displayed, clic the "Plot" button to draw another and repeat the operation as many times as you want.
       
    • f_automatic (n, m, Discrete=false/true) 
      d and Discrete both have the same meaning than for f_step_by_step.
      m is the number of random walk you want to draw
      The code is set to draw 1000 walks of 1000 steps ; this correspong roughly to 250 Mb of memory used.

      f_automatic contains a call to Threads:-Sleep to delay the display, the argument of Sleep is set to 0.25 second and must be modified within the procedure (its value could be passed to f_automatic as an argument).

      In my opinion it is the more interesting of the two procedures.
       

    The values of the current mean and standard deviation are displayed as title.

    The purpose is before all educative and can be seen as an illustration of the (one of) Central Limit Theorem(s) (CLT)

    A little bit of theory:
    Let X[n] the position of the drunkhard after n steps; his position X[n+1] is either X[n]-1 or X[n]+1 with equal probabilities.
    The displacement X[n+1]-X[n] is a discrete random variable S with outcomes -1 and +1 and it's easy to find its variance is equal to 1.
    The position of the trunkard after n steps is just a realization of the n independant and identically distributed, random variables S1, ...Sn whose distribibution is equal to the one of S.
    Thus :

    • Expectation (S1 + ... +Sn)  = 0 
    • Variance (S1 + ... +Sn)  = n 
      For n=1000 steps, the standard deviation of the arrivals is about 31.6)

    CLT says that the distribution of S1 + ... +Sn  tends to a Gaussian distribution as n tends to infinity.

    What is the exact distribution of the arrivals?
    Another way to represent S is to write S = 2*B-1 where B is a Bernoulli random variable with parameter 1/2. The random variable "Arrival" is  twice the sum of N indpendent rabdom variables such like S 
    and thus its distribution is 2*Binomial(N, 1/2)-N.

    What is the rate of convergence of the histogram to the true probability function?
    For a sample of size N drawn from a continuous random variables, its histogram has:

    • a bias error of order 1/K (K being the number of bins)
    • a Linfinity error of order  K*sqrt( log(K) / M )  (M number of drunkhard's walks)
      see for instance Lec2_density.pdf

    Using the option Discrete=true corresponds to the choice K=2*N+1, in this case the choice with the highest Linfinity error (the larger K the smaller the bias but the larger the  Linfinity error).
    This is the reason I introduced the possibility to graw histograms and bar (column) graphs: for the same value of M the Linfinity error of the histogram (for instance with the default number of bins Maple uses) is nuch slower than the one of the comumn graph.



    A few "internal" parameters.
    I already spoke about the delay to display txo succesive walks.
    Other parameters could be:

    • The value of minbins in the case discrete=false (default)
      This value is fixed to 2*sqrt(M).
       
    • The width in the "view" option of the plot: it's left part displays the drunkhard's walk and it's right one the histogram of the arrivals (after a rotation of -Pi/2). 
      This value si fixed to 5/4*M.
      Note that the histogram is dynamically rescaled in order it's height is always 1/4*number_of_steps.
       
    • The height of the view option is set to -Q..Q where Q is equal to 4 standard deviations of the theoritical distribution of the arrivals.
      The continuous envelope of this distribution is red plotted in red (its height is normalized to M/4, see above). 
      One can show this standard deviation iverifies sqrt(M).
      In my opinion using a full vertical scale (-M..M) doesn't give pretty drunkward's walkes because they seem to more concentrated around the value 0.
       



    WATCHOUT
    Starting from 0 any walk with an odd number of steps will give an odd arrival and any walk with an even number of steps will give an even arrival. Thus the exact number of outcomes for the arrivals are:

    • 2*n if n is odd
    • 2*n-1 if n is even
       


    Other application
    This maplet can be used as illustration of the Galton Board (also known as the Bean_machine)


    Why using maplets?
    Another solution could have been to use animate. But to draw the M drunkard's walks, you would have had to use M frames. An excessive task that I'm not even sure Maple would have been able to handle.
    I guess that imbeded components could do the job too, but I'm not as comfortable with them as I am with maplets.

    To illustrate what the code does an image of the final result is given below.

    Drunkard_walk.mw

    'Export as pdf' is not one of the  'Export as' options on  a Mac. Instead, you should follow these instructions, from

    ?pdf:

     
    1. Open the worksheet that you want to export.
    2. From the File menu, select Print.
    3. Specify options for export to PDF as described in Section Options for Export to PDF below.
    4. From the PDF drop-down list, select Save as PDF...
    5. In the Save As dialog, enter a filename.
    Click Save.

     

    I am testing Maple 2020.2 with new Latex with Physics version latest 879.

    The latex generated now issues \! between the symbol and the () next to it to improve the spacing. This post is just to let anyone using the package mleftright in Latex, that this will cause a problem. So it is better to remove this package if you are allready using it.

    Here is an example

    eq:=y(x)=exp(x/2);
    Latex(eq)
    
                  y \! \left(x \right) = {\mathrm e}^{\frac{x}{2}}

    In earlier version of Physics:-Latex (now it is just Latex), the above generated this

                 y  \left(x \right) = {\mathrm e}^{\frac{x}{2}}

    Notice, no \! in earlier version.

    If you happen to be using \usepackage{mleftright} to improve the spacing for \left and \right, which I was using, you'll get negative side effect. A solution is to remove this package. Here is an example showing the above Latex compiled with this package added, and without it, so you can see the differerence.

    \documentclass[12pt]{book}
    \usepackage{amsmath} 
    \usepackage{mleftright}
    \mleftright
    \begin{document}
    
    With the package mleftright loaded
    
    which gives using latest Latex V 879. Maple 2020.2
    \[
      y \! \left(x \right) = {\mathrm e}^{\frac{x}{2}}
    \]
                
    And which gives using earlier Physics Latex. Using Maple 2020.1
    \[
      y \left(x \right) = {\mathrm e}^{\frac{x}{2}}
    \]
    \end{document}

    This is the output without using this package. by removing the inlcude command in the above Latex code and not calling mlfright. Now the problem is gone:

    I like the effect added from \! , which is a manual way to improve the space, which this package was doing.

    just be careful not to use mleftright package now, which is a somewhat popular package in latex and It was recommended to use sometime ago to improve the spacing, as it will over correct the spacing, and looks like not needed any more with latest Maple Latex.

     

     

    We have just released updates to Maple and MapleSim.

    Maple 2020.2 includes corrections and improvements to printing and export to PDF, support for macOS 11.0, more MATLAB connectivity, resolves issues with the installation of the Maplesoft Physics Updates, and more.  We recommend that all Maple 2020 users install these updates.

    This update is available through Tools>Check for Updates in Maple, and is also available from our website on the Maple 2020.2 download page, where you can also find more details.

    If you are also a MapleSim user, this Maple update will be installed automatically when you update your MapleSim installation to the newly released MapleSim 2020.2. The MapleSim update also includes many updates to MapleSim, the MapleSim CAD Toolbox, specialized MapleSim libraries, MapleSim connectivity tools, and MapleSim Insight.  You will find details about new features and improvements, as well as instructions on obtaining the update, on the MapleSim 2020.2 page.


    One forum had a topic related to such a platform. You can download a video of the movement of this platform from the picture at this link. The manufacturer calls the three-degrees platform, that is, having three degrees of freedom. Three cranks rotate, and the platform is connected to them by connecting rods through ball joints. The movable beam (rocker arm) has torsion springs.  I counted 4 degrees of freedom, because when all three cranks are locked, the platform remains mobile, which is camouflaged by the springs of the rocker arm. Actually, the topic on the forum arose due to problems with the work of this platform. Neither the designers nor those who operate the platform take into account this additional fourth, so-called parasitic degree of freedom. Obviously, if we will to move the rocker with the locked  cranks , the platform will move.
    Based on this parasitic movement and a similar platform design, a very simple device is proposed that has one degree of freedom and is, in fact, a spatial linkage mechanism. We remove 3 cranks, keep the connecting rods, convert the rocker arm into a crank and get such movements that will not be worse (will not yield) to the movements of the platform with 6 degrees of freedom. And by changing the length of the crank, the plane of its rotation, etc., we can create simple structures with the required design trajectories of movement and one degree of freedom.
    Two examples (two pictures for each example). The crank rotates in the vertical plane (side view and top view)
    PLAT_1.mw


    and the crank rotates in the horizontal plane (side view and top view).

    The program consists of three parts. 1 choice of starting position, 2 calculation of the trajectory, 3 design of the picture.  Similar to the programm  in this topic.

     

     

    First 21 22 23 24 25 26 27 Last Page 23 of 297