MaplePrimes Questions

I have programmed a bisection procedure below, and i was just wondering how i would change this into a recursive version of the method. I don't really understand what is ment by recursive?

bisection:=proc(f,X,Y,Z)
local a,b,c,d;
a:=X:
b:=Y:
d:=Z:
while(abs(b-a)>d) do
c:=(a+b)/2:
if sign(f(c))=sign(f(a)) then a:=c else b:=c
fi:
od:
print(evalf((a+b)/2)):
end proc:

Many thanks!!!

convert Arg[I*Sinh[1 + I]]to Pi - ArcTan[Cot[Abs[Tanh[1 - I]]]]

arg(I*sinh(1+I))

arctan(cot(abs(tanh(1-I))))

Hi All,

I am combining two problems I have with fsolve. 

1)  When fsolve finds a solution, it does not distribute the result globally.  So I have to cut 'n paste each result on another line.  Big PIA.  Is there a way to globalize the results?

Dear Maple users

If i have two lists L:=({1,2,5},{3,4,6},{1,2,3}) and G:=({2,1,3},{3,5,1},{1,5,2})

How would i write a procedure to put these two lists into one as {1,1,1,1,1,2,2,2,2,3,3,3,4,5,5,5,6} i now there is a method in maple help but it doesnt meet what i need.

Any help would be appreciated.

I am attempting to get MAPLE to generate indefinite integrals that are of the form:

exp(-k[r^2-a^2*cos(x)]^0.5)

from fundamental calculus principles I might set u = [r^2-a^2*cos(x)]^0.5 which then should yield du/dx = 1/2*(a*sin(x)/[r^2-a^2*cos(x)]^0.5).

Then if my math is correct the result should end up:

2*(r^2-a^2*cos(x)]^0.5)*exp(-k[r^2-a^2*cos(x)]^0.5)/[-k*a*sin(x)]

Hi all, I'm new to Maple T.A. 5.0 (I have about a weeks experience with it) and I'm wondering how to utilize the Keyword search function. When I go to Question Repository there seem to be 4 categories that I can search from; Groups, Type, Keyword, and Information Field. I understand how to use all these search options, save Keyword. Is there a way to assign a keyword to a question or a group so I can search by it? And if so, can someone please tell me how to do it?

Hello.

At first, sorry for my poor english.

I am seeking, since a long time, a way to intersect a straight line, horizontal or vertical, and a sequence of plots, which describe a closed figure.In order to calculate the area.

 

In one way, i want to seek points describe by:

the taylor series of a function

g(x) = f(x + a * f(x)) around a point x = x0 is given as (hoping i am correct)

g(x) = f(x0) + f'(x0) * (x+a*f(x) -x0) + f''(x0)/2 * (x+a*f(x)-x0) + .... ------------(********)

but using the command

taylor(f(x+a*f(x)),x=x0,4)

gievs

f(x0+a*f(x0)) + f'(x0+a*f(x0)) * ....

 something which is different ...

how to get (***********)

 

 


Hello,

I am working on the system model of an impulse radar.  My primer aim is to simulate the received signal. I use signal components and some simple elctrical circuits in the Maplesim model. First version of the system works fine, but I'd like to develop it.

I have the following problems:

- I don't find a way to put a time-delay in the system (in time-domain or in s-domain in the form of' *exp(-s*T)' )

- It seems to me that there is no direct way to add noise to the system (like Gaussian...)

Given a list of values L:=[a,b,c...] how do i order the list from highest value to lowest?

Hi,

Hello,

Relatively new to Maple - just been playing about with basic trig. But when I try to plot a straightforward tan(a) I get something that's clearly not tan(a). sin and cos(a) behave as you'd expect. What am I doing wrong? It makes me worry about other plots I've suspected were wrong...

Thanks,

Dan

I am using plot3d for the first time. It is cutting off the z-axis under certain rotations (both the axis label and the top of the plot). I am using Maple 11.01

Has anyone else experienced this problem, and how do I fix it?

thanks.

 

 

First 2054 2055 2056 2057 2058 2059 2060 Last Page 2056 of 2433