Education

Teaching and learning about math, Maple and MapleSim
In the following working Maple 11 worksheet an error ("Error, (in rtable/Product) invalid arguments") occurs if "array" is changed to "matrix". Also, if I change "Vector" to "array" I don't get the answer that I want. I get the same error if I use the Matrix Palette to define the matrix. View 4937_SE.mw on MapleNet or Download 4937_SE.mw
View file details Please help me understand these things better.
Does anyone know how to solve this equation 49x + 24y + 37z = 3778171
hi..im a student from malaysia..
It's a new day, but not a new problem. Yesterday I asked about solving inequalities with abs. Today I am looking at solving an equation with abs. Try the following:
restart;
q :=  sin(x)/x - 1:
test4 := y -> [ y,
                solve( q=y, x ),
                [solve( abs(q)=y, x )],
                fsolve( q=y, x ),
                fsolve( abs(q)=y, x ) ]:
test4(  0  );
test4( 0.1 );
test4( 0.5 );
test4( 1/2 );
test4(  1  );

[                         /sin(x)           \                -13]
[ 0,   0, [0],      fsolve|------ - 1 = 0, x|, 1.869896012 10   ]
[                         \  x              /                   ]
Quick, what numbers x satisfy:
abs( x-2 ) < 1
How does Maple answer this?
solve( abs( x-2 ) < 1, x );
                         RealRange(Open(0), Open(2))
Now, change the RHS to 1. (floating-point 1):
solve( abs(x-1) < 1., x );
           RealRange(1., Open(2.)), RealRange(Open(0.), Open(1.))
Of course, these two intervals can be combined to the one interval. Maple 10 did not have this problem. (I will explain what Maple 11 is doing later, I want the next paragraph to appear in the truncated version of this post.) This issue is important for those of us trying to use Maple in the classroom. While it's not difficult to explain what is going on, the point is that this is not the mathematics I am trying to teach and these issues are a distraction.
I need help with a problem. There are 24 square tables, but the tables must be formed as rectangles. i.e. two together. How many combinations can be made with the 24 tables. What is the maximim number of people to sit at the tables using what combination What is the least number of people to sit at the tables using what combination.
The latest edition of TUGboat (vol. 28 no. 2, 2007), the journal of the TeX users group, contains an article by Edward Reingold, Writing numbers in words in TeX, which, as its title states, gives TeX macros for converting integers to names. In this case, American English names. For my amusement Sunday I wrote the equivalent procedure in Maple.
Hi How do I find the max possible volume of the following cylinder when volume given as V=pi(6r^2 -r^3). The sum of its radius and height is 6cm.

... I doubt that there has ever been a better way to learn the relationship between numbers - and even mathematics in general - than the slide-rule from days-gone-by, and the ability to plot functions using modern computer technology. For the young people here who may not have ever used a slide rule, below is a link to a virtual slide rule:     virtual slide rule

I wish, and think...

I have just released the new version of the FourierTrigSeries package. Some bugs were fixed and new procedures were added. This package provides new data structure for the representation of trigonometric series and also several procedures to manipulate with trigonometric series and to compute Fourier series. Previous package name FourierSeries was changed to FourierTrigSeries to be distinguished from the FourierSeries package made by Wilhelm Werner.
Here are some possible bugs or limitations that I have come across while working with Tensors in the new physics package. I have done best of my efforts looking into the documentation, but it is still possible that the bugs I am listing are not bugs at all but outcome of lack of my knowledge in using Maple. My intention of creating this blog is to not to criticize but to help the Physics package development team in making updates. I appreciate their efforts for developing a much needed package for areas like fluid mechanics, continuum mechanics, theory relativity etc. Platform I am using: Maple Ver 11.01 on Mac OS X 10.4.10
Jacques posted a link to an interesting article in the New Yorker about feature creep. Perhaps we should ask whether Maple is suffering from this malady, but before doing so we really need to answer the question "what is Maple for?" So here's a place to say what you think Maple's main purpose is/should be. Here's my shot: Maple's prime purpose is to help teach math. J.Tarr
At what age do you think students should start learning and using Maple? What are your reasons?
Having looked recently at a suite of engineering software in use, I wondered whether engineers would need maths for much longer. Of course they’ll always need sufficient for business purposes, but my guess is maths will become unnecessary for engineering in much the same way as it’s unnecessary for weather forecasting. There would probably be a residual role for maths in engineering research, but not in the mainstream, and that would have huge implications for schools and universities. How do those engaged in teaching maths to budding engineers see the future?
hi, i made a markov model with 2 treshold values (k and n, n>k) and 3 maintenance activities. i write my availability equation: for a = λd / (λd + λin) P(0,0)= 1 / ( k + ((k-1) * (λin/μin)) + ((k-1) * (λin/μm)) + (a * ((1-a^(n-k))/(1-a))) + (a * ((1-a^(n-k))/(1-a)) * (λin/μin)) + (a * ((1-a^(n-k))/(1-a)) * (λin/μM)) + ((a^(n-k) * (λd/μD)) ) Availability = P(0,0)*(k + (a * (1-a^(n-k)))) i want to find the optimal λin which max. the availability.. is there any way to solve without giving any numerical values??
First 53 54 55 56 57 58 Page 55 of 58