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
  • This is a quick programming exercise to correct the following problem in Maple:

    for n from 8 to 12 do 
      A := Matrix(2^n, 2^n, storage='sparse'):  # zero matrix
      print( 2^n, time(LinearAlgebra:-Transpose(A)) );
    end do:
    

    The problem is that the LinearAlgebra:-Transpose command is not sparse. That is, the time it takes is proportional to the overall size of the matrix and not to the number of non-zero entries - even when your matrix uses sparse storage. In this post we will look at what is required to program a new Transpose command which can handle much larger matrices.

    After read this funny post by Will, I implemented a short function in Matlab (linked to Maple) to count the number of occurences of any number into the 10.000 first digits of Pi. Here is the result for the first 9.999 numbers:
    Trying to use Maple to perform some trigonometric transformations, I found a good introduction to Maple: MCS 320: Introduction to Symbolic Computation of the Department of Mathematics, Statistics, and Computer Science @ the University of Illinois at Chicago. It have some lines about the Maple function, which give that kind of informations:
    >> trigsub(cos(2*x));
    [cos(2*x), cos(-2*x), 2*cos(x)^2-1, 1-2*sin(x)^2, cos(x)^2-sin(x)^2, 1/sec(2*x), 1/sec(-2*x), 
    (1-tan(x)^2)/(1+tan(x)^2), 1/2*exp(2*i*x)+1/2*exp(-2*i*x)]
    
    An algorithm created to help scientists process images of tiny specimens has unexpected applications for brain teasers. When Cornell physicist Veit Elser attempted to demystify an esoteric imaging problem for biologists, he had no idea his solution would also help subway riders and break room loiterers around the world figure out those challenging, Sudoku puzzles. While creating an algorithm that could render images of small and delicate biological specimens, Elser inadvertently found a universal solution for the popular Japanese brainteasers. "This algorithm, which was extremely effective in image reconstruction microscopy, was extremely general," he said. "If you just express it in the right mathematical language it could be used in all kinds of things."
    It seems to me that when I look at lists such as New Content that I see messages in a scrambled order. I'd like to see them in reverse date order. Rich
    I can see it on the first page - maybe - but when I start browsing the forums, I don't want all the stuff on both sides. Rich
    I'd like one. Or do we have it and I just have not seen it? Rich
    I'd like to suggest that the forums be split a bit farther apart: Algebra & Geometry Announcements from Maple Astronomy & Navigation Calculus (maybe this and algebra go into Math) Chemical Engineering Civil Engineering Economics & Finance Educational Applications Electrical Engineering Mechanical Engineering Physics Probability & Statistics Programming Puzzles & Games This is just a suggestion. More categories might be warranted. I wouldn't want it to be much more specific, but I may have missed some categories that interest others. I am new to the forum and might find it easier to find what items of interest.
    MaplePrimes own Jim Herod has a wonderful set of lecture notes—accompanied by a collection of Maple worksheets—which introduce linear operators on infinite-dimensional Hilbert spaces to beginning graduate students in science and engineering. Entitled Linear Algebra, Infinite Dimensions, and Maple, these notes were developed from a one quarter course which Prof. Herod taught many times at the Georgia Institute of Technology. The notes are very concise and have been refined and improved many times over the years in response to student feedback.
    I do not understand why these parts give different results. Part 1. > restart; > u:=(t,x)->sum(a[n](t)*sin(n*Pi*x),n=1..2); > diff(u(t,x),t); > D[1](u)(t,x); THE OUTPUT OF THE LAST LINE IS WHAT A HUMAN WOULD GET. Part 2. > restart; > N:=2; > u:=(t,x)->sum(a[n](t)*sin(n*Pi*x),n=1..N); > diff(u(t,x),t); > D[1](u)(t,x); THE OUTPUT OF THE LAST LINE IS 0, curiously. Part 3. > restart; > N:=2; > u:=(t,x)->add(a[n](t)*sin(n*Pi*x),n=1..N); > diff(u(t,x),t); > D[1](u)(t,x); THE OUTPUT OF THE LAST LINE ECHOES THE REQUEST. > I prefer the output of Part 1, of course. I can tolerate the output of Part 3. But, the output of Part 2 seems wrong. What am I not understanding?
    I generally use MaplePrimes from Internet Explorer 6.0 in Windows 98SE with my screen resolution set to 800x600. In this configuration, I sometimes have problems reading the contents of text boxes at the far right of the screen. For example, this happens whenever I post a comment or send a private message. The problem is that the text is not displayed because it is overwritten by the lists of Active Forum Topics, Recent Blog Posts, Recent Comments, etc.
    Today, I noticed that when my comments on a post are displayed, every word of the title is capitalized, as in
      Uploading A Group Of Files?
    Yet, in the Recent Comments column on the far right of the screen, the title is displayed just as I entered it:
      Uploading a Group of Files?
    Take a piece of string — I mean literally, go get a piece of string and tie it into a knot. Now tape the two ends together so it makes a closed loop — necessary to fulfill the mathematical definition of a "knot." How many different knot types do you think there are? The number is infinite, and the question of how to categorize these manifestations of loopiness has engaged some of the finest mathematical minds for a century. Original story

    This feature makes it easy for you to share mathematics with people worldwide. You can now upload your Maple documents to a MapleNET server for free. This allows you to share your interactive Maple documents with people worldwide, even to people who do not have a copy of Maple; all they need is a web browser. Read on to learn more about the new features.

    First 278 279 280 281 282 283 284 Last Page 280 of 306