Rate of change with possible negative numbers

2.5k Views Asked by At

I feel really stupid about this but I'm having some problems with calculating the change in % when working with negative numbers.

The calculation I'm using gives a satisfying result when the numbers are > 0.

decimal rateOfChange = (newNumber - oldNumber) / Math.Abs(oldNumber);
  1. Lets say I have two numbers 0.476(newNumber) and -0.016(oldNumber) that's an increase of 0.492 and with my calculation the rate of change is 3 075%.

  2. If i instead have 0.476(newNumber) and 0.001(oldNumber) that's an increase of 0.475 and my calculation will give me the rate of change of 47 500% which seems correct.

Blue line represent example one and red line is example two. In my world blue line should have bigger % change.

How would I write this calculation to give me the correct % change when also dealing with negative numbers? I want it to handle both increases and decreases in the % change.

I understand this is a math issue and I need to work on my math

Blue line is first example & Red line second example

2

There are 2 best solutions below

8
On

You are mixing two concepts: absolute and relative deviation.

You seem to expect that bigger absolute deviations imply bigger relative deviations, which is false. You also seem to think that negative numbers is the cause of the unexpected (but correct) results you are getting.

Relative deviation depends on the magnitude of the absolute deviation and the magnitude of your reference value, not its sign. You can have smaller absolute deviations that imply really big relative deviations and vice versa.

old value: 1
new value: 100
abs. deviation: 99
rel. deviation: 99

old value: .00001
new value: 1
abs deviation: .99999
rel deviation: 99999
6
On

Seems to work for me.

decimal newNumber = 0.476m;
decimal oldNumber = -0.016m;
decimal increase = newNumber - oldNumber; // this is 0.492 which is true
decimal rateOfChange = increase / Math.Abs(oldNumber);

rateOfChange is equal to approximately 30.75 which is 3075% which is the correct change.

The second example works too. The increase is -0.475 which gives the rateOfChange equal to -475 which is equal to -47500% which is correct.