MathGroup Archive 2005

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

Search the Archive

Re: symbolic approximation (formular manipulation)

  • To: mathgroup at smc.vnet.net
  • Subject: [mg55051] Re: symbolic approximation (formular manipulation)
  • From: Paul Abbott <paul at physics.uwa.edu.au>
  • Date: Thu, 10 Mar 2005 05:25:18 -0500 (EST)
  • Organization: The University of Western Australia
  • References: <d0mnef$71b$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

In article <d0mnef$71b$1 at smc.vnet.net>, Zhe Hu <iamhuzhe at gmail.com> 
wrote:

> A formula in electrical engineering can be simplified after assuming,
> e.g. R1<<R2, within 10% error tolerance.
> 
> How this kind of "simplify" or approximation can be performed by Mathematica?
> 
> For example, R1<<R2, R2<<R3
> 
> R1+R2                      R2                                      R2
> ---------------  --->  ------------------  ---------> ------------------
> R1(R2+R3)               R1(R2+R3)                       R1 R3

Use Series.

  Normal[Series[(R1 + R2)/(R1 (R2 + R3)), {R1, 0, -1}, {R2, 0, 1}]]

Cheers,
Paul

-- 
Paul Abbott                                   Phone: +61 8 6488 2734
School of Physics, M013                         Fax: +61 8 6488 1014
The University of Western Australia      (CRICOS Provider No 00126G)         
35 Stirling Highway
Crawley WA 6009                      mailto:paul at physics.uwa.edu.au 
AUSTRALIA                            http://physics.uwa.edu.au/~paul


  • Prev by Date: Re: String comparison
  • Next by Date: Re: symbolic approximation (formular manipulation)
  • Previous by thread: Re: symbolic approximation (formular manipulation)
  • Next by thread: Re: symbolic approximation (formular manipulation)