Maple Questions and Posts

These are Posts and Questions associated with the product, Maple

So, I have to minimize only one variable, but with totally insane constraints. For simplicity, I want to solve it only for n=4 and specific graph, so it will be a little bit easier than described below.

1n is a column of "1".
So, is it possible at all? I spent almost 5 hours, tried everything that is possible to google, but still can't run it. Here is what I've done(as 'D' is reserved, I used 'B' instead):

a := .4*x^3+.3*x^2+.2*x+.1;

z^coeff(b, x^0);

it should be z^1

however can not run this, how to get this constant term 1?

Dear Experts,

 

 

I have an equation which needs to be simplified. However it is mostly in Bessel I and BesselK. To simply it I have used the simplify( expression,

Can somebody explain me this:

http://www.maplesoft.com/support/help/Maple/view.aspx?path=LinearAlgebra/ToeplitzMatrix
http://en.wikipedia.org/wiki/Toeplitz_matrix

in wiki it started from 1 at [1,1] if using below

however maple package started from 5

restart;

x := 1;

y := 3;

input := [1, 2, 3, 4, 5, 6, 7, 8, 9];
with(LinearAlgebra):

T1 := ToeplitzMatrix(input, 3);

T1 := Transpose(result);

restart;

x := 1;

y := 3;

a := [1, 2, 3, 4, 5, 6, 7, 8, 9];

Goal is writing this matrix

Matrix([[seq(a[k], k = x .. y)], [seq(a[k], k = x+1 .. y+1)], [seq(a[k], k = x+2 .. y+2)]]);

 

when i shorten above hard code writing into this

seq(Matrix([[seq(a[k], k = x+m .. y+m)]]), m = 0 .. 2);

i failed to make a matrix, convert(,list) failed

I created a null tetrad, but Maple's GRQuery returns false.  Here is the code:

Hi,

I'm trying to compute the mean and variance of a custom discrete random variable, as indicated in the file below (well, I do know its mean and variance, but I need the variable in a more complex context). Defining it is no problem at all, but when I parse Mean(Y) and Variance(Y), a weird expression shows up, despite my random variable being really simple. Does somebody know what goes wrong?

 

sol := solve(f);

sol := [3, 1+2I, 1-2I];

would like to consider 1+2I and 1-2I is the same thing

however repetition not work in this case

would like to check this in if statment and count add one when meet this condition

as there are many equations to check

i interpolate data and result in 96 equations

and then solve them and saved their roots into Vector roo, each of roo has 3 roots

and would like to animate first root of 96 equations, second root of 96 equations to see how roots move 

however meet difficulty when animate, how to animate this

moreover, is it possible to slow down the anime when playing it

> roo; Vector(4, {(1) = ` 1 .. 99 `*Vector[column], (2) = `Data Type: `*anything, (3...

Hello,

This method works in 2d... but in 3d I get a HFloat undefined output when I try and substitute the actual values in to the function. If anyone could have look through the programming and see why this is, it would be really helpful!

Thanks,

Rach:)

The_Whole_Program_I.mw

1. which command can check the result of solve command has repeated roots?

2. which command can check the result of solve command has zero roots? is it only find whether contains zero in the list? which command is to check contains zero in the result in solve

I need to solve the following equation:

>restart;
>z := a+b*y*conjugate(y) = 0;

where y*conjugate(y) is unknown. How to solve it or how to eliminate y*conjugate(y) from the equation?

Thank you.

In the "solve" expression below, I am puzzled why the Maple solution has the natural log argument

((Voh-Vthl) / (Voh-Vtlh)

rather than

((Vthl-Voh) / (Vtlh-Voh)

as I would have expected;

solve(Vthl = Voh + (Vtlh - Voh) * exp-(t / t1), t)

?

Thank you

I need to graph x^3-xy+y^3=7 and y=-11(x-2)-1 on the same graph.

First 1471 1472 1473 1474 1475 1476 1477 Last Page 1473 of 2224