Unanswered Questions

This page lists MaplePrimes questions that have not yet received an answer

I'm looking for any procedure to calculate orthogonal latin squares. I found this:

rOrt := proc (A, B, n)

local freq, i, j;

freq := Array(0 .. n^2-1);

for i to n do

for j to n do

freq[A[i][j]+n*B[i][j]] := 1

end do;

end do;

freq := convert(freq, list);

return numboccur(freq, 1)

end proc:

 

But I don't know what I now have to write to see result, for example for n=3?

Aslam-ul-Alikum I need some help urgently. I want to compare the coefficients of like powers of Y_1*Y_2, please help how i compare it in maple

Find f:\mathbb{R} \to \mathbb{R}, continuous such that

I thought I would generate a fun problem for Maple, and see what coding we could come up with.

You happen to be at work one day and overhear the managers talking about taking sick days away from the employees because everyone is taking their sick time around weekends.  The managers have decided to take one more years worth of data before making their decision. 

So you've decided to build a program in Maple for all the employees to use so that...

Hi, I got a doubtI don’tknow how to make the Runge-Kutta’s and Euler’s method. The Runge-Kutta for thesecond and fourth order. I don’t know how to beginning the algoritms, I needsome help. Thanks.

Now I compute the integral 

0<int((abs(c-x)/x)^n,x=a..b)=int((c-x)/x)^n,x=a..c),symbolic)+int((x-c)/x)^n,x=c..b)

assuming c>0,b>c,n>-1.

As it is not possible directly, I split this apparently real integral in two parts. Both parts are real for n>0. Look, what's happens!!!

> Za:=simplify(int(((c-x)/x)^n,x=a..c),symbolic) assuming a>0,c>a,n>-1;

When I do integration and differentiation, even of the simplest functions, it gives me incorrect answers. What could I have done wrong? Just to mention I recently installed a licensed copy on my computer. 

Hello

 

pl explain me how to find a and b in this eqation

 

a^x + b^y = 1,

 

were a= 5 and b= 8 

 

thanks

I want to invlaplace the following complex expression that I call PQ.

>PQ:=(cosh((1/2)*eta*sqrt(C3^2+4*C1*s))*sqrt(C3^2+4*C1*s)+sinh((1/2)*eta*sqrt(C3^2+4*C1*s))*C3)*(cosh((1/2)*eta*C3)-sinh((1/2)*eta*C3))*(-cosh(C4)-sinh(C4)+s)/(s^2*(-sinh((1/2)*C3)+cosh((1/2)*C3))*(sinh((1/2)*sqrt(C3^2+4*C1*s))*C3+sqrt(C3^2+4*C1*s)*cosh((1/2)*sqrt(C3^2+4*C1*s))))

where C1 C3 C4 eta are constant .

Then I do like this

>invlaplace(PQ)

But I got

Hi I want to obtain the inverse of the following cumulative function: F(x)=1/n ∑_(i=1)^n(1-e^(-β/h (x-x_i-γh) ) )

I have problem with externall calling. I need to return from java 2-dimensionall array. In java class it works fine, but I can't find proper definition in Maple, done by define_external function. I tried also return 1-dimensionall array, but there I didn't have problems.

 

My code in java looks like:

public class ConcatTest2{

public static int[][] Test(){

int[]][] ret = new int [2][1];

Hello, everyone, I have written 13 equations, and some of them contain 88 items at least, so they are complicated. When I have executed the program and estalished input and output ports, I click the button "Generate MapleSim Component", it takes a while for running, but there is no MapleSim Component generated in the GUI interface, strangely, no error information appears at the same time, I cann't figure out what's wrong with it? Could someone help me out? Thank you. This mw file is attached.

How to prove that 

sum(binomial(n, r)*binomial(k+r, n), r = 0 .. n) = sum(binomial(n, r)*binomial(k, r)*2^r, r = 0 .. n)?

Maple calculates the LHS and RHS, but I cannot compare these with Maple for each n::posint and each k::posint s. t. k>= n. The question was asked in Mathematics SE. I don't understand whether it is answered there.

I am trying to see if Maple can help me find a closed form for an infinite series. I do this:

 

restart:

s:=Sum(n^2/((Pi^2*n^2+beta^2*epsilon^2)*(exp(n))^4), n = 1 .. infinity);

value(s);

 

Maple returns with:

I'm making a student quiz and would like to use Maple to enter long division problems. Is there an expression template in the palettes for entering long division?

 

Thank you.

Jerry

First 285 286 287 288 289 290 291 Last Page 287 of 361