Maple Questions and Posts

These are Posts and Questions associated with the product, Maple
I am writing a program in which, after some calculations, I want to give the user some information and then ask them if they want the program to continue. I've tried using readline(terminal) and readstat, but I have the following problem: the information that I want the user to see is printed at the bottom of the screen and Maple gives a dialog box to get the user input. With the dialog box showing, the user can't scroll down to see the data. Is there a way to make sure that the data shows up before the dialog box pops up? Or is there another way to get input from a user?
I was wondering if I could change the values on the x-axes. I want to have the value 3500 at origo and 0 at "3500" normally is, can this be done?

On subscripts. I like to use them as part of variable names but Maple does this to me.

Lets say I have

Maple Equation

My question is about how Maple handles differentials.

In its derivation of an equation for pressure as a function of depth my physics text comes up with this:

Maple Equation

from which it gets

Maple Equation

How can I write with 2D math in text mode? That is, I want to create a document with mathematical expressions but I don't want Maple to do any mathematical operations on them. Imagine that you're trying to write a page in a textbook with expressions put in normal notation and interspersed with comments - that's what I'm trying to do. I've tried Text>Maple Input, Text>2D Input, Text>2D Math, Text>Normal, etc, etc but they all just put out 1D. And if I try to use "Math" instead it invariably does some sort of simplification or normalization or some such when I don't want it to touch the expressions I enter at all.
Hello! So glad to become a part of this community, I am loving Maple. So here is my question: I know c++ fairly well (need to freshen up) and the same idea with Java, Ive seen I can incorporate languages into Maple, or so it seems. What type of things am I capable of doing? And along those lines, any suggestions to what path to take in order to learn such powerful tools? I am currently working on a bachelor/masters in engineering and would love to know Maple better then I do my own Fiance (just dont tell her). Thanks in advance!
How do i find the coeff? It is not working! > restart: > alias(epsilon=ep); epsilon > eqn := ep*x^4 - 3*x^2 -2*x + 1; 4 2 eqn := epsilon x - 3 x - 2 x + 1 > eqn1 := simplify(subs(x=ep^(n)*y,eqn)/epsilon^(1+4*n)); 4 (-1 - 2 n) 2 (-1 - 3 n) (-1 - 4 n) eqn1 := y - 3 epsilon y - 2 epsilon y + epsilon > asym1 := sum(y[n]*ep^(n), n=0..3); 2 3
Hi, I have a question. I work with maple in a fairly unusual way. I use the vim editor and the command line interface (don't try to change this it won't help). Then I typeset my results using the latex mode. I am wondering of late if I can read my input into the graphical version of maple and control the formatted output produced by the gui. i.e. is there some analog of `latex/special_names`[x1] := `x_1` For the gui interface. I can't seem to find this documented anywhere. Thank you, Derek
Hi all I have a(x) and b(x), a(x) is only interesting from x=0..5 and b(x) from 5..10. How can I define those to into one c(x)? I guess I need the piecewise function, but I don't understand anything from the help file.. Can anyone please explain it to me, thanks.
i need to take a sphere and and graph a point going around the sphere. i have the code: restart: with(plots): with(plottools): x1:=(u,v)-> sin(u*Pi)*cos(v*Pi); y1:=(u,v)-> sin(u*Pi)*sin(v*Pi); z1:=(u,v)-> cos(u*Pi); x2:=(u,v)-> 3*sin(u*Pi)*cos(v*Pi); y2:=(u,v)-> 3*sin(u*Pi)*sin(v*Pi); z2:=(u,v)-> 3*cos(u*Pi); p1:=plot3d([x1(u,v), y1(u,v),z1(u,v)] ,u=0..1,v=0..2,color=blue, axes=normal): points:={seq([x1(k/50),y1(k/50),z1(k/50)], k=0..314 )}: display(p1); pointplot3d:(points); only i get the error Error, invalid input: x1 uses a 2nd argument, v, which is missing how do i put in arguments for u & v?
I had a new homework in maple but there is two questions that i have a hard time figuring them out. If somewone could help me it would be nice. 1. It says that E=L{v1,v2,v3,v4} (all vectors) where v1= (-5,3,2,0,1), v2=(0,-1,1,3,0), v3=(3,1,0,0,2) and v4=(1,4,4,2,0). Discribe E, which is a subset of R5 (and the teacher would like a description like this exemple: E={(x,y) ∈R2 ∣ 2x-3y=2} 2. A matrix: A := Matrix(5, 5, {(1, 1) = 1, (1, 2) = 0, (1, 3) = 0, (1, 4) = 0, (1, 5) = 0, (2, 1) = 0, (2, 2) = 4, (2, 3) = 0, (2, 4) = 0, (2, 5) = 0, (3, 1) = 0, (3, 2) = 0, (3, 3) = 52, (3, 4) = 0, (3, 5) = 0, (4, 1) = 0, (4, 2) = 0, (4, 3) = 0, (4, 4) = 7, (4, 5) = 0, (5, 1) = 0, (5, 2) = 0, (5, 3) = 0, (5, 4) = 0, (5, 5) = 3})
how do i expand [ln(1+x)]^2??? and find partial derivatives of functions
I'm generating fairly complex shapes and dumping the x,y,z coordinates of each point to a text file. The shapes have a high degree of spherical symmetry, so they usually look like a torus or ellipsoid. I've been using pointplot3d to plot the shapes using 'style=line'. The result is something that looks close enough to a wireframe plot. However, for my final thesis I will be submitting, I'd like to show the shapes opaquely (with hidden lines). Basically, the type of plot generated by: plot3d(sin(phi)^2, theta=0..2*Pi, phi=0..Pi,coords=spherical,style=wireframeopaque,color=black);
Hello everybody, does anyone know how to integrate the output of BsplineCurve in maple 8? I can plot it over a given interval, but if I try to perform the corresponding definite integral, I get the following error message: Error, (in int) wrong number (or type) of arguments as opposed to the output of the Spline routine, which can be integrated without problems. Thank you for your help.
Hello everybody, does anyone know how to integrate the output of BsplineCurve in maple 8? I can plot it over a given interval, but if I try to perform the corresponding definite integral, I get the following error message: Error, (in int) wrong number (or type) of arguments as opposed to the output of the Spline routine, which can be integrated without problems. Thank you for your help.
First 1968 1969 1970 1971 1972 1973 1974 Last Page 1970 of 2097