MaplePrimes Questions

Hi there,

Unfortunately I don't have access to Maple because I am away from my office for the week, but I need a

system of linear equations solved. Can someone please solve it for me and post the solutions (if any)?

The system is:

a_1 x_1 + b_1 x_2 + c_1 x_3 + d_1 x_4 = e_1 + e_4

a_2 x_1 + b_2 x_2 + c_2 x_3 + d_2 x_4 = e_2

a_3 x_1 + b_3 x_2 + c_3 x_3 + d_3 x_4 = 0

a_4 x_1 + b_4 x_2 + c_4 x_3 + d_4 x_4 = e_1 + e_4

I am supposed to adjust the code my teacher gave us for a project. The only problem is I dont know anything about maple or much about what I am supposed to do. I tried copying and pasting the code but I couldn't.

The assignment says to adjust the code to incorporate variable window size. There is a place in the code where it says insert code here and the teacher said it shouldn't need more than like 8 lines of code.

 

If anybody thinks they they can help I will be more then happy to forward you the email.

I need the list of x and y separately of S[2] like the:

[.8098169753, 0.8098169753, .8098169753, .8098169753, .8098169753, .8098169753]

[1.339721710, 1.309892054, 1.282898312, 1.258277638, 1.235670705, 1.214793049]

 

 

restart; with(LinearAlgebra);
a := 2; b := .29; d := 1.85; for h from .5 by .1 to 1 do
eq1 := x*(-b*x^2-x+1);
eq2 := y*((a*x*x)/(b*y^2)-d-h*y);
S := solve({eq1, eq2}, {x, y});

working on my exam notes for tomorrow, I get this...

and only 1/3 or so of my document opens... anyone that can help me out here..?  

I use Maple 17... 

I want to choose four points A, B, C, D on the sphere  (x-2)^2 + (y-4)^2 +(z-6)^2 -81=0 from the list L so that there are not any the right triangle are formed from the points A, B, C, D. How to get it? I tried

 

> restart:

with(geom3d):

eqS:=Equation(sphere(S,(x-2)^2 + (y-4)^2 +(z-6)^2 -81=0,[x,y,z],'centername'=T)):

L:=[]:

I am also having trouble with limits when I have indexed
variables.   That is, how do I tell Maple to assume every element of
an indexed variable is positive?

uxb3% maple < te7a

    |\^/|     Maple V Release 3 (Governors State University)



Here, I show that normal limits work.
> int (exp(-x^2),x=3..infinity);

                                1/2         1/2

                          1/2 Pi    - 1/2 Pi    erf(3)



> assume(a>0);

> int(exp(-a*x^2...

When I was programming on Python, the "up arrow" key could copy a previous command line that I have entered, but I'm not sure if such a shortcut exists in Maple.

For example:

INPUT: 2+2

OUTPUT: 4

Presses "up arrow key"

2+2

 

 

Thanks,

Say I want to find the derivative of x^2+2x-3 when x = 2

i.e. f'(2) where f(x) = x^2+2x-3

How would I do this?

 

Thanks.

New user. How do I launch the clickable math interface as in the demo video in maple 17 student? I also need help with entering/ solving simultaneous equations step by step.

how can i define a matrix as a sunction of a variable so that when i chande the independet variable,the elements of the matrix also change?

A(t):=[a[t],b[t],c[t]] ; i want to define a function like this,so that by changing the time t,the elements of the matrix also change,what should i do?

How does one take the gradient of a expression involving sums in terms of a set of indexed variables.

I am trying to find the maxima for the satisfaction for a public good from a tax code. The sum represents the total revenue. The tax code is defined as a piecewise linear function of income and indexed variables. The indexed variables represent the points of the kinks and the marginal tax rate for each income bracket. (The set of indexed variables will vary...

Hello,

I have found numerous ways of plotting PDEs, but I am trying to ask Maple to calculate the simple analytical solution of one.

Now, Maple is very happy to solve the following with one initial condition:

restart;
with(PDEtools);

pde := diff(u(z, t), t)+c*(diff(u(z, t), z)) = A;
IBC := (u(z, 0) = f(z));

sys:=[pde,IBC];

ans:=pdsolve(sys); 


However, when we take, 
IBC := (u(z, 0) = f(z), D[1](u)(0, t) = 0, D[1](u)(-h, t) = 0);

I want to use for do loop and the print statement. print(h, AA) gives two columns left for h and right for AA separeted by comma. How to change this two column presentation so that I can get the sequence of h and sequence of AA. Note that print(h) and print(AA) gives two separate columns. But I want to convert print(h, AA).

 

for h from 0.01 by .1 to 5 do
AA := (1+h)/h^2;
print(h, AA) end do:

In the attached worksheet there are 2 numbers. The first is the answer a got, the second is the offical correct answer.Ther look entirely different. Numerically they are the same. I wondering is there a way to simplify my answer?Rationalize_ans.mw 

The general formula of GHR (Gazis-Herman-Rothery), the most well known car following model, is given by

an - acceleration of vehicle n implemented at time t
v - speed of follower vehicle
deltax and deltav - relative spacing and speeds respectively between follower and leader vehicle at a
     ...

First 1576 1577 1578 1579 1580 1581 1582 Last Page 1578 of 2434