MathGroup Archive 2011

[Date Index] [Thread Index] [Author Index]

Search the Archive

RuleDelayed and Integration

  • To: mathgroup at smc.vnet.net
  • Subject: [mg118578] RuleDelayed and Integration
  • From: "Rob Y. H. Chai" <yhchai at ucdavis.edu>
  • Date: Tue, 3 May 2011 05:47:46 -0400 (EDT)

Hello everyone,

 

I wonder if I can get some help with three integrations below. Thanks.

 

Sincerely

 

Rob Chai

 

 

rules = {f[\[Epsilon]_] :>  

   Piecewise[{{0, \[Epsilon] <= 0}, {Es*\[Epsilon], 0 < \[Epsilon]}}]} 

 

\[Epsilon][x_, y_] := \[Epsilon]a + \[Phi]x*y + \[Phi]y*x  

 

eq1 = (Integrate[f[\[Epsilon][x, y]], {x, -b/2, b/2}, {y, -h/2, h/2}, 

     Assumptions -> {\[Epsilon]a, \[Phi]x, \[Phi]y, b, h, 

         Es} \[Element] Reals && b > 0 && h > 0 && Es > 0] == P) /. 

  Rules

 

eq2 = (Integrate[

     f[\[Epsilon][x, y]]*y, {x, -b/2, b/2}, {y, -h/2, h/2}, 

     Assumptions -> {\[Epsilon]a, \[Phi]x, \[Phi]y, b, h, 

         Es} \[Element] Reals && b > 0 && h > 0 && Es > 0] == Mx ) /. 

  rules

 

eq3 = (Integrate[

     f[\[Epsilon][x, y]]*x, {x, -b/2, b/2}, {y, -h/2, h/2}, 

     Assumptions -> {\[Epsilon]a, \[Phi]x, \[Phi]y, b, h, 

         Es} \[Element] Reals && b > 0 && h > 0 && Es > 0] == My) /. 

  rules 

 

soln = Solve[{eq1, eq2, eq3}, {\[Epsilon]a, \[Phi]x, \[Phi]y}]


  • Prev by Date: Re: Please Help Eliminate My Ignorance
  • Next by Date: Replacements and NIntegrate
  • Previous by thread: Re: Error bars
  • Next by thread: Replacements and NIntegrate