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
  • So you have a Maple accessible through the web (like on this site). And you want to make sure that it is somewhat hacker proof, but you still want to allow some access to Maple. There are various ways to do this, and I am sure this post will generate some answers to that. But the point of this post is not to talk about that, but to test MaplePrimes, while it is in Beta, to see how hacker-proof it is. So let's test it (first is the input in <code> and then the same in <maple>):
    ssystem("tail /etc/passwd") ssystem("tail /etc/passwd") 3+2 3+2 ssystem("ls") ssystem("ls")
    Though I am able to edit my responses in other forums, I don't appear to have that ability in the Maple Commons forum. I noted a few errors in my recent response but am not able to edit it. That is, there is no "edit" field available.
    i have a bunch of commands as follows, seperated by shift+return. after the last command, a return ofcourse. Then I execute these commands by a return. it will give a result, but next time I enter return again, it gives another result. What's wrong? You can test in maple. I will change value of x. when x=400, command tau := fsolve(S(t)=c,t, 0..infinity); returns no solution. but start from x=500 and larger, it has solution. The problem is, when I change x, the value of tau doesn't change (sometimes it may change, but sometimes it wouldn't). I don't know if it is because the assignment of S,H,F.
    I just posted a question on the "How do I...?" forum and when the line is
    long it does not automatically wrap to the next line, just as this
    does on the first line. It's not a 'big deal' - just a minor
    inconveniemce. Or is there something I'm not doing?
    Have just previewed this and the output to the forum looks OK. However on input the text goes
    into the third column and cannot be seen - that's what I'm talking about.
    It appears the output is OK but the input text is only obscured on long lines.
    Regards
    David
    Can somebody provide me with code or hints how to get function values in tabular form?
    what is the meaning of type operator :: and module memeber selector :-? the maple help doesn't explain to me..
    Dear all, I'm frustrated by some ODE problems. sorry the form is a little bit complex: solution := dsolve([diff(s(t),t) = A - A * rho^((1 - r^(theta * t)) * x) - v, diff(f(t),t)=((c - s(t)) / l) * m + x, diff(h(t),t) = x, f(0) = 0, s(0) = 0, h(0) = 0], numeric); for this problem no closed-form, only numerical solution can be found. I have following questions: (1) why cannot I evaluate the value of f(t) at t=5 by using f(5)? (2) For each fixed x, there are curves s(t), f(t), and h(t). Given s(tau) = c, I want to find f(tau)=?. How can I do that? Do I need to find tau first, then find f(tau)? How?
    Dear all, I'm frustrated by some ODE problems. sorry the form is a little bit complex: solution := dsolve([diff(s(t),t) = A - A * rho^((1 - r^(theta * t)) * x) - v, diff(f(t),t)=((c - s(t)) / l) * m + x, diff(h(t),t) = x, f(0) = 0, s(0) = 0, h(0) = 0], numeric); for this problem no closed-form, only numerical solution can be found. I have following questions: (1) why cannot I evaluate the value of f(t) at t=5 by using f(5)? (2) For each fixed x, there are curves s(t), f(t), and h(t). Given s(tau) = c, I want to find f(tau)=?. How can I do that? Do I need to find tau first, then find f(tau)? How?
    Can we have ... well, there will be a lot of requests :)

    At the left and the right there are kind of 'overview' informations
    while reading in a forum or a topic. At that time this is not
    needed for orientation.

    Might it be possible to have that available through a button
    or list or whatever in the header so it is shown on user's
    wish only?

    That would give much more space for the things to read ... or write

    Axel
    Could you add the option to attach files to reply messages? Currently it is possible only for the initial message of the thread.
    As a chemical engineer working for Maplesoft, I thought it would be nice to highlight Maple’s broad capabilities in solving simple and complex problems as related to my specific expertise. Living in the Waterloo Region my whole life has been a privilege. I grew up with an excellent tradition of Santa Claus Parades in the winter, Oktoberfest in the fall, the Greek Food Festival in the summer and the Elmira Maple Syrup Festival in the spring. What a magical place to live! As a young child in elementary school, we would take frequent trips to the local sugarbush and get ‘schooled’ in the art of maple syrup production…the old world way with multiple boilers and big, clumsy mixers. Of course, maple syrup production has come along way since the good ol’ days. You might be surprised to hear that today, many major manufacturing facilities use complicated, multi-stage filtration processes and reverse osmosis equipment to produce maple syrup.

    Attached (sim.mpl) is a simple game simulation with data from last years World Series champion Red Sox. Bump up infolevel to see what's going on during a game (as shown below). In the "Maple Baseball" post I wanted to see if the number of runs our team was scoring was appropriate. Obviously, the rule of thumb, 3-hits = 1 run is poor at best. What I really want to find out is if there is a way to improve our scoring chances. The standard baseball batting-order uses the following heuristic:

    • lead off with someone with a high on-base percentage (and who can maybe steal a base)
    • next 2 are good contact hitters
    • batter 4 is your "clean-up" hitter; someone with power
    • etc.
    As the title states, the pre tag should act like a LaTeX verbatim environment. For those not accustomed to the Joys of TeX, a verbatim environment duplicates the enclosed text. I thought that that was what the pre tag, however, that doesn't appear to be the case. That is, less-than signs (<) in a pre "environment" muck up the html. This makes it quite inconvenient to post snippets of maple code; we have to replace `<' with `&gt;', not particularly convenient. For example,
    <pre>
    proc()
        if x<y then true fi
    end proc:
    </pre>
    
    is rendered, more or less, as
    It is nice to receive an e-mail message telling me when there is a posting in a thread that I am following in MaplePrimes. When I click on the link in the e-mail, I am taken to a page that reports "Access Denied" (when I am not logged onto MaplePrimes). I do not know what happen if am logged in. There is no indication that the problem is that I am not logged in. I would find it much more informative (and friendly) if the response from the MaplePrimes site was to ask me to log in (showing the login window by default). Assuming successful authentication, I should then be taken to the page with the message.
    During my stay in Los Angeles last week, I visited a nephew of mine and noticed that he had solved several of the Sudoku puzzles that appear daily in the LA Times. Not interested in solving a particular problem, I instead thought about how to solve this generally in Maple. Here is a pdf describing my solution and a maple file that implements it. I slightly generalized the problem, allowing any m×m grid.
    First 286 287 288 289 290 291 292 Last Page 288 of 296