MaplePrimes Questions

  I been trying to run a maple loop recently where maple computes the values of r,theta,phi for spherical coordinates from some fsolve statements. However I have found this to take an extremely long time (days). What I want is for it to make rows of these and then output them to a file so that I have rows of r,theta and phi for several hundred thousand of them atleast. Currently I simply create a n by 3 array with however many entries my loop has and then fill each position in the array using for loops then I use writedata to write the entire array into a file.

Hi there,

 

I have computed the odd extension for f(x)=1 on 0 < x < Pi which is

> 4/Pi*Sum((sin(2*n-1)*x)/(2*n-1),n=1..infity);

 

how do I get a sketch of it?

 

Thanks

Dear Maple users,

How may I enter in MAPLE the function

f(x,y) = x*y /(x^2+y^2)  IF  (x,y) different from (0,0), and

f(x,y) = 0  IF  (x,y) =(0,0) ?

Thanks in advance for any help.

Jean-Jacques

Can someone explain how to do this?

Prove that if we describe the circle of center (a; b) and radius r using
the parameters (a; b; k), with k = a2+b2-r2, rather than the more natural parameters
(a; b; r), then the error function H(a; b; k) = E(a, b,rad(a^2 + b^2 -k) is quadratic in a; b
and k. What does this imply about the number of critical points?

Hi there, I calculated an Integral today, and earned a term with B(2/3,5/3) in the result: > f(x):=(1-x^(3/(2)))^(2/(3)); > 2*Pi*(int(f(x), x = 0 .. 1)); what does it mean??

Hi there,

I typed exactly the same thing from my lecture notes to reproduce some graphs in Maple Classical Worksheet

however result in 'empty plots'

Is it that I have to load some packages using 'with( XXX )'?
 

Can someone help me with that?

 

Thanks

 

Download 7845_Coursework Maple.mws
View file details

 

Hi, assume  i have some data and want to fit a model function to it (Maple12). The help pages show a way:

with(Statistics):
X := Vector([1, 2, 3, 4, 5, 6], datatype=float):
Y := Vector([2, 3, 4.8, 10.2, 15.6, 30.9], datatype=float):

f:=a+b*exp(c*t);

Fit(f, X, Y, t);

It works as expected. Now assume that the model function is not explicitly given,  it may be just the solution of a  differential equation:

f:=diff(y(t),t)+u*y(t)=v; y(0)=0

when i run a program that returns a expression, example :

f=3%1 + 2 cos(phi2 + phi3)
%1 := sin(phi3 + phi4 + phi2)

How to return f =3sin(phi3 + phi4 + phi2)+2 cos(phi2 + phi3)

I'm using MAPLE TOOLBOX FOR MATLAB, run in Matlab windown.

K heres my problem.

Say i have a function, for example y=(1-x) and i want to find out which values of x will give me a real answer (i.e. no complex numbers!)

Preferrable i would like the output to be something along the lines of... "y is real for a<x<b..."

Hello,

Is there a way to merge two lists?

For example, to merge:
a=[[1,2],[3,4]]
b=[[5,6],[7,8],[9,10]]

and get:
[[1,2],[3,4],[5,6],[7,8],[9,10]]

Thanks

I need your help and guidance to resolve
this problem.

Simplify expression under summation. How could simplify the expression inside the sum, as much as possible. I have tried with:

simplify, expand, Normalize, Power...

But do not get the results I want.

Hi all,

I have a system of differential equations:

Eq1:=diff(R(t), t) = -0.22*W(t)-3000+0.3*R(t)+3488*exp(0.295e-3*t)+.744*(diff(W(t), t))

Eq2:=diff(W(t), t) = 0.304*W(t)-0.1916e-1*R(t)-2981*exp(0.295e-3*t)+2180-.36*H(t)+.6*(diff(R(t), t))

To solve, I could plug Eq1 into Eq2. However, maple will also solve this system without plugging Eq1 into Eq2. But, I see the answers are different. So, which method is correct?

Title allready says it all. I want to create a 2D plot in the xy-plane of e.g. x^(3/2) + y^(3/2) = 1 How do I do that? -.^

I get the proper graph with this function however I need to zoom on the intersection to show that the limit does not exist.

implicitplot3d((x^2-y^2)/(x^2+y^2), x = -.5 .. .5, y = -.5 .. .5, z = -2 .. 2, grid = [30, 30, 30])

 

 When I enter this function, I only get a blank plot window.  When I drag and drop it in the plot window I get an error.

implicitplot3d(z = xy^2/(x^2+y^4), x = -4 .. 4, y = -4 .. 4, z = -.5 .. .5, grid = [30, 30, 30])

  Any help is greatly appreciated,

 Jim Z

Hey!

So I am trying to write a nifty little program to show that for any x^n Leibiz method of dividing the area under the curve into rectangles of base r,r^2,r^4... so on, can this be done?

 

Thanks!

First 2157 2158 2159 2160 2161 2162 2163 Last Page 2159 of 2434