0
  tornadom  = 
        (m)(Pi)/d
        (m π)/d
        lambdan  = 
        (n)(Pi)/h
        (n π)/h

u[x,y,t]= 
Re[F[x,y,t]] = 
(Q∘)Cos[(ω)(t)]-((16)(Q∘)/dh)
Sum[(Sin[tornado (x)]/tornado)Sin[lambda (y)/lambda],{{m,n},Infinity}]

Syntax::sntxi: Incomplete expression; more input is needed.

I am a beginner in mathematica and stuck in writing following equation,kindly help me to solve this problem.I'll be very thankful to you guys. p.s it is incomplete because i got an error. enter image description here

mathematica equation

zhk
  • 11,939
  • 1
  • 22
  • 38

1 Answers1

1

If your question is, how to input the mathematical expression in to Mathematica, then here it is,

xi[m] = m*Pi/d;
lambda[n] = n*Pi/h;
F[x_, y_, t_] = Q0*Cos[w*t] 
            - 16*Q0/dh*Sum[ Sum[Sin[xi[m]*x]/xi[m]*Sin[lambda[n]*y]/lambda[n]*(g1[m, n, t] 
            - w*Integrate[(Cos[w*(t - s)]*g2[m, n, s] + Sin[w*(t - s)]*g1[m, n, s]), 
            {s, 0, t}]), {n, 0, Infinity}], {m, 0, Infinity}]

Note

You will get 1/0 because of xi[m] and lambda[n].

zhk
  • 11,939
  • 1
  • 22
  • 38