- Jun 17, 2017
- 5,881
- 29,890
So, it's been years since I last took an advanced math course, and of course I've forgotten most of the stuff involved there. When your math is primarily focused on just day to day checkbook balancing, things like sine curves just aren't important to you. To your computer programs, maybe...
Anyways, I'm trying to find a math function that will generate some diminishing returns r.e. stuff being added to a stat. I considered square root, but it is a bit too aggressive in what it does (i.e. 1 - 1, 100 - 10 , 1000 - @ 31 (int)). There's probably a way to do a say '1.5, i.e. 3/4 of square root, but doing the math in my head, that still feels a little too aggressive at the larger values for what I want.
I'm wondering about which other Python functions are out there that might be closer to what I need. Say as an example a 50%-60% gradual falloff at around 100 as a baseline, with gradual but continuing 'diminishing returns' past that.. I'm open to suggestions from the 'math inclined'.
Anyways, I'm trying to find a math function that will generate some diminishing returns r.e. stuff being added to a stat. I considered square root, but it is a bit too aggressive in what it does (i.e. 1 - 1, 100 - 10 , 1000 - @ 31 (int)). There's probably a way to do a say '1.5, i.e. 3/4 of square root, but doing the math in my head, that still feels a little too aggressive at the larger values for what I want.
I'm wondering about which other Python functions are out there that might be closer to what I need. Say as an example a 50%-60% gradual falloff at around 100 as a baseline, with gradual but continuing 'diminishing returns' past that.. I'm open to suggestions from the 'math inclined'.