Login Help

Will's picture

You can log into MaplePrimes using either your MaplePrimes or Maplesoft.com login information. Accounts that have the same e-mail address will be linked together: If you previously signed up at both MaplePrimes and Maplesoft.com, when you log in you will be logged into your MaplePrimes account. If you don't have a MaplePrimes account, and log in using your Maplesoft.com information, a new account will automatically be created for you.

If you are using your MaplePrimes login, please enter your username and password.

If you are using your Maplesoft.com login, please enter your e-mail address and password.

If you don't have an account at either site yet, please register at MaplePrimes by clicking on this link.

Missing Password

If you have registered at MaplePrimes and have not yet received the e-mail containing your password, please send the username you signed up with as well as your e-mail address to the MaplePrimes support team using the contact form

.

Comments

I want help

I want find prime in Maple. I don't use Maple fluently. I have to enter, what is web? thank you.

Will's picture

isprime

If you want to check if a number is prime in Maple, use the isprime command.

Is that what you were looking for, or is it something else?

____
William Spaetzel
Marketing Engineer, Maplesoft

about fsolve

> restart;
> infolevel[all] := 0;
print(`output redirected...`); # input placeholder
0
> infolevel[evalf] := 0;
print(`output redirected...`); # input placeholder
0
> infolevel[fsolve] := 0;
print(`output redirected...`); # input placeholder
0
> Digits := 20;
print(`output redirected...`); # input placeholder
20
> fsolve(25*sqrt(2)*(int(sin(x)/sqrt(x), x = 0 .. x))+50*cos(x)-52.065 = 0, x = 0 .. 10);
print(`output redirected...`); # input placeholder
4.8970849930206885426

Why lost the solution on x=0.5 .Anyone got an idea?

> fsolve(25*sqrt(2)*(int(sin(x)/sqrt(x), x = 0 .. x))+50*cos(x)-52.065 = 0, x = 0 .. 1);
print(`output redirected...`); # input placeholder
/ / (1/2) (1/2)\ \
| (1/2) |2 x | |
fsolve|50 Pi FresnelS|-------------| + 50 cos(x) - 52.065 = 0, x, 0 .. 1|
| | (1/2) | |
\ \ Pi / /

Maple's right

Try this:

restart;
f := 25*sqrt(2)*(int(sin(x)/sqrt(x), x = 0 .. x))+50*cos(x)-52.065;
plot(f,x=0..6);
evalf(eval(f,x=1/2));

Hope this helps,

J. Tarr

Domine's Function

Hi Community, Could you help me please?

For example I Have this fuction:

f:=x^(1/3)
plot(f,x=-2..2);

However it don´t plot the side of numbers negatives, Why?
What do I do to solve it?

Thanks for your time.

gkokovidis's picture

Domine's Function

This question belongs in a new thread.

The negative range has imaginary components when raised to the (1/3), that is why you do not see it.

Regards,
Georgios Kokovidis
Dräger Medical

Robert Israel's picture

Domine's function

To get a version of the cube root of x that is real when x
is real, use surd(x,3). Or use the RealDomain package.

gkokovidis's picture

Domine's function

Using the function surd, as outlined above by Robert Israel, you can combine it with plot to get what you are looking for:

>restart:
>plot(surd(x,3),x=-2..2);

Regards,
Georgios Kokovidis
Dräger Medical

Login Help

Everytime that I attempt to login, I have to do it twice, that is, I enter my username and password, press Login, and it ignores me. I then do the same thing a second time, and I'm logged in OK.

 

WHY?

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
}