Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
Greetings, Can someone please tell me why I am seeing this error. Thank you, > `mod` := mods; Error, invalid mod `mod`Typesetting:-mambiguous( Assign modssemi, Typesetting:-merror( "invalid mod", foreground = "[255,0,0]", mathvariant = "normal"))
Regarding my previous post in this forum "Help with a possible improper integral...". Can anyone provide some advice on how they go about plotting expressions that contain undetermined constants ? take for example the equation of a line: y =m*x+b. thanks, v/r,

Hello, I found an error in the following plotting. An error is with discont=true and the range <-5,5>x<-5,5> In other cases it is OK. plot(tan, -5 .. 5, -5 .. 5, discont = true); But when I plot tan as an expression no as a function it works correctly. plot(tan(x), x = -5 .. 5, -5 .. 5, discont = true); The whole document can be visited via View 551_error_tan_plot.mw on MapleNet or Download 551_error_tan_plot.mw
View file details

Ok, another of my "how do you do this" questions: In solving a an equations such as: y''-4*y'+5*y = 0 I would like to show the roots; is there a function that will just pull the roots from the equation as written or do I have to write the equation like: m^2 + 4*m + 5 = 0 and use: solve(m^2+4*m+5); Thanks...
How do I get Maple to convert the output of the polar() to degrees with convert(arg, degrees)??? Does the polar() store the magnitude and angle values that is spits out into some variable somewhere that isn't documented? I can't figure this out right now; short of making a copy of the angle part of the polar()'s output to then be fed back into the convert(angle, degrees) statement. Help anyone?
I'm hoping someone can help me. I'm trying to find the equation of a circle using three points (2 outside points and the midpoint). I tried typing this from the Maple software help menu, but keep getting an error: > with(geometry); _EnvHorizontalName := m; _EnvVerticalName := n; > circle(c1, [point(A, 0, 0), point(B, 2, 0), point(C, 1, 2)], > 'centername' = O1); > center(c1), coordinates(center(c1)); Error, (in geometry:-circle) the coordinate names must be a list of two names Error, (in isassign) the first argument is expected of type name > My three points are actually (-4,-9), (6.7), and the center is (1,-1). I've worked on this for days, but can't seem to get anywhere. If anyone could help I'd greatly appreciate it!
Is there a way to redefine the way constants are displayed? I would like to have ODE results displayed with C1, C2... with 1,2 as a subscript? Thanks for any help you can offer.
Would anyone in forum community know of a legitimate online tutoring service that could provide help for me to learn how to use maple? If so, would you please send me the hyperlink to this service? I have specific questions that the tutorals already provided through maplesoft do not answer. Thank you.
Okay, here goes I am have some questions. I am solving the Mathieu differential equation whit a damping term, so the equation I am solving is: u''(x)+b*u'(x)+(a-q*cos(\Omega t))=0 Where I have a=0 and b=1,9, and whit the initial conditions u(0)=0 and u'(x)=1, this gives me the following: u(x) = exp(-9/10*x)*MathieuS(-81/100, 1/2*q, x) I would like to see for which values of q, that the function u(x) is in the interval [-20;20]. I can solve the problem by drawing some plots, but I still haven’t been able to solve it without. I know this is a long short, since you guys have so little info on the problem at hand, but any help will be much appreciates.
So I have a vector X that contains my least squares coefficients. How do I incorporate these coefficients back into a polynomial function automatically using loops or the like? Right now I have to define the funciton manually f:=x-> X[1]*x^3 + X[2]*x^2..... but I want to be able to quickly vary the degree of the polynomial without having to edit the function definition by hand each time. Any geniuses out there that can help me? Thanks, Matt
If f(x)=-4x^(2) and g(x)=2/x, find [g*f](x).
Implement a computer programme which, for a given function f(x), interval [a,b] and real numbers epsilon1>epsilon2>0, finds an approximation x~ from the inerval (a,b) with an error less than epsilon1 by bisection and, with x~ as the stating value, finds an approximation of this root by the second modification of tj=he Newton method with an error less than epsilon2.
Download 285_quantmechprob1.14.mws
View file details I'm trying to perform an integration on a function involving a couple constants in order to normalize (setting result of integral = 1) and solve for the constant, A. The closest I'm able to reach with respect to completing the integral is a result that involves the error function, erf. How do I go about getting a neater closed form solution to the this integral ? Am I illegal integration limits ?
In a worksheet I have the following subs({tan(a)=sin(a)/cos(a),tan(b)=sin(b)/cos(b)}, eq1) The following doesn't work, but I was wondering if there was any wild card character that would enable me to do something like this subs(tan(?)=sin(?)/cos(?), eq1)
I have been trying to come up w/ a fast way to get identity Matrices which can later accept non-zero non-diagonal entries. If I use the shape=identity parameter then the Matrix can't be manipulated. This is what I've come up with KronDelt :=proc(i,j) => if i=j then 1 else 0 end if end proc: Matrix(1..4,1..4,(i,j) -> KronDelt(i,j)) Was it necessary to seperately define KronDelt ? I tried putting a mapping directly into the Matrix constructor but always got a syntax error, e. g., Matrix(1..4,1..4,(i,j)-> if i=j then 1 else 0 end if ) This doesn't work. Is there any way to d
First 2118 2119 2120 2121 2122 2123 2124 Last Page 2120 of 2191