Table Of Contents
Determining Approximate Roots using Maxima
Determining Approximate Roots using Maxima
In the circle-circle intersection equations below:
•
d represents the inter-access point distance in feet
•
Obg represents the percentage of overlap desired for 802.11bg
•
Oa represents the percentage of overlap desired for 802.11a
•
R represents the cell radius in feet
Note that zero overlap occurs when the distance between the centers of the two circles is equal to twice the radius (d = 2R). This relationship becomes invalid if d is allowed to exceed 2R, as an area of intersection would be impossible to calculate. This is why the find_root function is limited to the closed interval from d/2 to d.
wxMaxima 0.7.3a http://wxmaxima.sourceforge.net
Maxima 5.13.0 http://maxima.sourceforge.net
Using Lisp GNU Common Lisp (GCL) GCL 2.6.8 (aka GCL)
Distributed under the GNU Public License. See the file COPYING.
Dedicated to the memory of William Schelter.
(%i4) find_root(Obg*%pi*R^2=2*R^2*acos(d/(2*R))-(1/2*d*(sqrt(4*R^2-d^2))),R,d/2,d);
(%i5) find_root(Oa*%pi*R^2=2*R^2*acos(d/(2*R))-(1/2*d*(sqrt(4*R^2-d^2))),R,d/2,d);
Note
Maxima is not produced, marketed, sold, or supported by Cisco. Maxima is a publically available computer algebra system (CAS) that has been released under the GNU Public License. Further details regarding Maxima, its capabilities, and its use (including downloads for various operating systems) can be found at the following URL http://maxima.sourceforge.net.