<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://ethics-mom.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://ethics-mom.github.io/" rel="alternate" type="text/html" /><updated>2026-04-22T00:49:55+00:00</updated><id>https://ethics-mom.github.io/feed.xml</id><title type="html">The Unethical Blog</title><subtitle>Physics curiosities and more</subtitle><author><name>Ethics Mom</name></author><entry><title type="html">AOI, a BMI alternative based in dimensional analysis</title><link href="https://ethics-mom.github.io/2026/04/21/AOI-an-alternative-to-bmi.html" rel="alternate" type="text/html" title="AOI, a BMI alternative based in dimensional analysis" /><published>2026-04-21T00:00:00+00:00</published><updated>2026-04-21T00:00:00+00:00</updated><id>https://ethics-mom.github.io/2026/04/21/AOI-an-alternative-to-bmi</id><content type="html" xml:base="https://ethics-mom.github.io/2026/04/21/AOI-an-alternative-to-bmi.html"><![CDATA[<p>I have recently grown more disappointed in BMI. And it’s not just because medical professionals have been moving away from using it, there is something inherently busted about the system.<br />
So, I took it upon myself to try and find a fix to it, and the system I have come up with is the Aspect Oblateness Index, or AOI.
In this post I will use metric units (m and kg) but at the end I will include the equation in Imperial units as well.</p>

<p>for reference BMI is calculated as follows:<br />
\(\text{BMI}=\frac{M}{H^{2}}\)<br />
With M as your weight in kg and H as your height in m</p>

<h2 id="motivation">Motivation</h2>
<p>At the core of dimensional analysis are things called dimensionless quantities, basically they are values that don’t have an associated unit.
Some examples are Aspect ratio which is distance / distance, Mach number which is speed / speed, and specific weight which is density / density.
In all cases all the units cancel each other out and you’re left with a unitless number. 
The cool thing about them is they tend to describe a system in a very characteristic way. 
For example, a plane wing which is moving through the air with a certain Reynolds number and Mach number behaves identically to a scaled down model as long as the Reynolds number and Mach number are the same.
This makes those wind tunnel tests with a smaller version of said vehicle work.<br />
By using a dimensionless quantity we can assure that height does not effect our results and that stature is measured correclty!
(Looking at you BMI)<br />
For our needs aspect ratio is the clear winner.
Simply measuring the aspect ratio of someone’s body would be difficult and with people being shaped differently from each other this proves to be a very rough path.
Instead, I opt to continue using height and weight and calculate aspect ratio from there.
This now poses a different question; how do we calculate the aspect ratio from height and weight alone?
We could calculate the volume, but without knowing what shape it’s in we’re no closer to solving this.
I chose to model a person as a spheroid with axes a,b,b.</p>

<p><img src="https://github.com/Ethics-Mom/Ethics-Mom.github.io/blob/main/Assets/Spheroid.png?raw=true" alt="spheroid diagram with axes" /></p>

<p>I did this because a person tends to gain weight in their middles, and less so on their head and feet.
So now the problem is solving for the aspect ratio of a spheroid (hence the name aspect oblateness index)</p>

<h2 id="aoi-derivation">AOI derivation</h2>
<p>In the following equation H will stand for height in meters, W will stand for weight in kg, and aspect ratio will be given as R.
The axes a and b are equal to 
\(a=\frac{H}{2}\)<br />
\(b=\frac{\text{Width}}{2}\)<br />
The aspect ratio is<br />
\(R=\frac{b}{a}\)<br />
The Volume of the spheroid is given by:<br />
\(V=\frac{4}{3}\pi ab^{2}\)<br />
We can get rid of b via substitution and multiply by density <br />
\(\rho=985\frac{kg}{m^{3}}\)<br />
\(M=\frac{4}{3}\pi\rho a^{3}R^{2}\)<br />
We may also replace a with H/2<br />
\(M=\frac{1}{6}\pi\rho H^{3}R^{2}\)<br />
We can finally solve for the aspect ratio from height and weight<br />
\(R=\sqrt{\frac{6}{\pi\rho}}*\sqrt{\frac{W}{H^{3}}}\)<br />
\(R=0.0440334358089\sqrt{\frac{W}{H^{3}}}\)</p>

<h2 id="aoi">AOI</h2>
<p>For convenience sake I take AOI to be equal to R * 100 so that it may be read as a percentage.<br />
\(AOI=4.40334358089\sqrt{\frac{W}{H^{3}}}\)<br />
eg. if you calculate R to be 0.15, AOI will be 15 and can be read as you are 15% as wide as you are tall.</p>

<h2 id="discussion">Discussion</h2>
<h3 id="shouldnt-it-be-aspect-prolateness-index">Shouldnt It be Aspect Prolateness Index?</h3>
<p>Yeah yeah its a tall sphere so its prolate and not oblate but I’m not the grammar police! and API is already a coding thing so oblate it is!</p>

<h3 id="wait-that-there-in-the-sqrt-thats-corpulence-index">Wait, that there in the Sqrt, that’s Corpulence Index!</h3>
<p>It sure is! Corpulence Index (CI) is like BMI but you divide mass by the cube of the height rather than the square of the height.
This does lend a bit more credance to using CI over BMI because of the whole being effected by height thing. 
AOI as a square root of CI does have particular advantages that I will explore in further posts.</p>
<h3 id="i-calculated-my-aoi-what-does-it-mean">I calculated my AOI what does it mean?</h3>

<table>
  <thead>
    <tr>
      <th>AOI Range</th>
      <th style="text-align: center">Category</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Underweight</td>
      <td style="text-align: center">&lt;14</td>
    </tr>
    <tr>
      <td>Normal</td>
      <td style="text-align: center">14-17</td>
    </tr>
    <tr>
      <td>Overweight</td>
      <td style="text-align: center">17-18</td>
    </tr>
    <tr>
      <td>Obese</td>
      <td style="text-align: center">&gt;18</td>
    </tr>
  </tbody>
</table>

<h3 id="imperial-units">Imperial Units</h3>
<p>\(AOI=732.597578731\sqrt{\frac{W}{H^{3}}}\)<br />
for lb and in.</p>]]></content><author><name>Ethics Mom</name></author><category term="Other" /><summary type="html"><![CDATA[I have recently grown more disappointed in BMI. And it’s not just because medical professionals have been moving away from using it, there is something inherently busted about the system. So, I took it upon myself to try and find a fix to it, and the system I have come up with is the Aspect Oblateness Index, or AOI. In this post I will use metric units (m and kg) but at the end I will include the equation in Imperial units as well.]]></summary></entry><entry><title type="html">Forefathers one and all Bear witness</title><link href="https://ethics-mom.github.io/2026/04/19/first-blog-post.html" rel="alternate" type="text/html" title="Forefathers one and all Bear witness" /><published>2026-04-19T00:00:00+00:00</published><updated>2026-04-19T00:00:00+00:00</updated><id>https://ethics-mom.github.io/2026/04/19/first-blog-post</id><content type="html" xml:base="https://ethics-mom.github.io/2026/04/19/first-blog-post.html"><![CDATA[<p>I’ve been wanting to make a place on the internet to post a lot of my math and nerd stuff but posting it to dicussion forums can get spammy and not many people end up seeing or appreciating it.</p>

<p>So i got this, and I also get some github experience while I’m at it.
<img src="https://i.pinimg.com/originals/a9/be/87/a9be87e0726e8422ebd49c90ddaf97e4.gif" alt="Gif of a sword elite from Halo CE killing master chief labeld I am the senate" /></p>]]></content><author><name>Ethics Mom</name></author><category term="Other" /><summary type="html"><![CDATA[I’ve been wanting to make a place on the internet to post a lot of my math and nerd stuff but posting it to dicussion forums can get spammy and not many people end up seeing or appreciating it.]]></summary></entry></feed>