MaplePrimes Questions

I have a question where I'm trying to find the value of some variable C that when multiplied by the double integral of a function returns 1 as the answer.

The function I'm in putting is f:=(x,y) -> C* exp((-0.001*x)-0.002*y), but leaving out the C when inputting into maple

The function also has parameters for the values of x and y where both are between -1 and 1(including =1 and 1) and x<y with x being greater than or equal to 0

I'm trying to use Maple to calculate surface integral; before getting to the surface integral, I need to get cross product of two vectors; but I could not get the codes work. Please help.


with (VectorCalculus):

x:= (r,t) -> r*sin(t);
y:= (r,t) -> r*cos(t);
z:= (r,t) -> r^2.sin(t)*cos(t);

> R := Vector*[x(r, t), y(r, t), z(r, t)];

Vector [r sin(t), r cos(t), r sin(t) cos(t)]
> r1 := VectorField(diff(R, r));
VectorField([0, 0, 0] + Vector [sin(t), cos(t), 2 r sin(t) cos(t)])
>
> r2 := VectorField(diff(R, t));

 

 

This is my program below. When I try to get an output, nothing happens, please help!

 

 

> restart:

 

 

> with(plots):

readlib(readdata):

lrc:=array(-1..1,-1..1):

lrn:=array(-1..1,-1..1):

urn:=array(-2..2,-2..2):

unr:=array(-2..2,-2..2):

urc:=array(-2..2,-2..2):

Ylm:=array(1..2,-2..2):

Dj:=array(-1..1,-1..1):

Dj2:=array(-2..2,-2..2):

rhoc[-1..1,-1..1,1..21]:

Given z = x*y, where 0<>

Here is my working so far

S1:=unapply(u*FresnelS(u)+((1/Pi)*cos((1/2)*Pi*u^2))-(1/Pi),u);

C1:=unapply(u*FresnelC(u)-((1/Pi)*sin((1/2)*Pi*u^2)),u);

with(plottools);

with(plots);

u0:=sqrt(0.25);

evalf(FresnelC(u0)+FresnelS(u0)*cot((3*Pi)/8));

p1:=display(plot([FresnelC(u),FresnelS(u),u=0..u0]));

p2:=display(plot(x-0.5191572775,x=0..1,y=0..1,colour=black));

display(p1,p2);

Hi, all, I have a question about how to compute inverse of matrix over field. Here field is actually GF(2)={0,1}. The description of MatrixInverse is here: LinearAlgebra[Generic][MatrixInverse] - compute the inverse of a square Matrix MatrixInverse[F](A) Parameters: F: the domain of computation, a field A: rectangular Matrix over values in F How to describe the F here? For example, how to illustrate {0,1} here? Thanks a lot.

Download 6782_Cheng.pdf
View file details

Why does Maple squawk when I submit more equations than it needs for FSOLVE?  Shouldn't Maple be able to tell that the first equation is dependent on the next two equations and ignore it?  Why can't SOLVE simply output the solutions as shown in the comment line instead of giving me all that razzamatazz about RootOf this and RootOfthat?  Thanks, Ratch

I dont know if I am suppose to post this in the Get Help Forum;

So I am trying to get ready for a skills test in using Maple and I am stuck on a couple review questions, I know they seem simple but I am really new at Maple.  Help Please?

Question:

Find the arc length of the curve y^2 + y = x with positive y-values from x =1 to x = 6 in two different ways and plot the graph of the curve with MAPLE.

 

Thanks

 

Hi, all, I have a confusion when I made a newline in worksheet mode. Usually, when I hit "shift+enter", then a newline is got. However, I found that in worksheet mode, when I hit "shift+enter", there is a newline, but there is no arrow appearing at the beginning of the newline while other worksheet file (not mine) has such a arrow at the beginning of each new line. any idea? my maple is maple12. thanks

I am trying to plot four different DEs on one graph, but Maple does not like the fact that I have several constants that are not assigned to numerical values.  Here is my code:

Hi,

How would the parametric equation for the following cylinder be like?

 

Cylinder: x^2 + y^2 = a*x  where a > 0

 

Thanks

 

 

my system [u(t),v(t),w(t)] is highly non-linear. I want to understand the local behavior at [u=0,v=0,w=0]. The boundary conditions are as follows: u(0) is given but v(0) and w(0) are not. I want to know if there is a suitable choice of v(0) and w(0) such that the system will converge to the critical point [0,0,0].

Can this system be approximated by a linear system? Or by a two-dimensional system?

Hello,

Questions,

Can I use the solve function with complex number?

i.e) a simple example

7 = solve(magnitude((2+j7) / (1+j*x), x)

How to implement the above to solve x in Maple?

seems Maple doesn't treat the complex sign of j as complex.

ie)
solve(sqrt(5)=abs(1+k*I), k);

I got k as
-I*(5^(1/2)-1), (5^(1/2)+1)*I

I might expect the k for 2.

Thanks,

 

 

How do I go about calculating a chi value for a fit line?

Hi

I am trying to create a procedure for the Simpson function and i can't see why it is wrong.

This is what i have done but it keeps coming up with an error.

First 2064 2065 2066 2067 2068 2069 2070 Last Page 2066 of 2434