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
  • Hi all, I have a thirdgrade equation and I wish to find the values when f(x)=0 So I have typed in the equation as well as f(x)=0 and wish for maple to give me the intersect points for L:=2*x^3+6*x^2-2*x-6:M:=0:plot([L,M], x=-4..2, y=-7..7); With the help of the help section I then add P:=Intersect(L,M); But I just get the equation read back to me. The answer I am looking to be displayed is -3,-1,1 How do I get maple to do this? Thanks in advance :-)
    Ignore this posting. The question was answered already in comp.soft-sys.math.maple. The problem was the use of point as the first argument of rotation. Change the two lines

    > rotation(point,P,evalf(theta),el);
    > coordinates(%);

    to

    > rotation(PP,P,evalf(theta),el);
    > coordinates(PP);

    and the procedure will work.

    --Edwin
    -------------------------------------------------------------------

    When I execute the procedure Rot below it works fine the first time but a second execution gives an error message? Is there a way to fix this problem? I have to do a restart to make it work again.
    The new poll surveys what we all do with our time ...

    I have only one question, how could I plot the following function correctly?

    > f:=x->piecewise(x<-1,1,x=0,2,1);

    f := x -> piecewise(x < -1,1,x = 0,2,1)

    I try this command but I do not reach the correct result.

    > plot(f,-3..3, style=point,discont=true,numpoints=100);

    [Maple Plot]

    This example illustrates why you should prove with results of solve command.

    You solve this equation: (x-1)^3/(x^2-1)=0 by Maple 9.5 > solve( (x-1)^3 / (x^2-1),x);           [1,1]

    Maple 9.5 and earlier gets the result [1,1], it is not correct but the result of Maple 10 is correct - no roots. This is the reason why you have to prove results.

    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.
    First 279 280 281 282 283 284 285 Last Page 281 of 307