D&D.Sci
Meta
- [read_on:: 2024-04-29]
- [url:: https://www.lesswrong.com/posts/HsxT2cpPWYzTg9tpY/d-and-d-sci]
- [prev:: 010 - Transcript “You Should Read HPMOR”]
Analysis
001 - D&D.Sci stats
Link to original
- STR: 6/20
- CON: 14/20
- DEX: 13/20
- INT: 13/20
- WIS: 12/20
- CHA: 4/20
Record of other student results of their Great Quest: https://raw.githubusercontent.com/H-B-P/d-and-d-sci/main/d_and_d_sci.csv.
Positive overload
I have a couple of ideas: I can search, through the dataset and find the closest entry with positive overload — I can bonus points for each stat point higher than the one in the dataset.
In that case, the result is:
with the score of -2
.
Note
Negative values indicate that overall I’ve already scored higher.
Calculate only lacking scores
Alternatively, I can reduce
only lacking stats, and discard the ones in which I’ve already scored enough.
With this modification, we get:
…which is an unfortunate result with a score of 2
.
Calculate only successful lacking scores
This is an alteration of the previous algorithm, where we search only successful datasets.
This, thankfully, gives us:
…with a score of 3
. This is good, but it doesn’t necessarily guaranteed us a success. We might overcompensate and thus fail.
Calculate guaranteed success
I think the best solution would be to find any 10
score dataset, so that we can alter our stats to match it perfectly.
Sadly, there’s no such entry
Calculate potential success
Without a guaranteed success, the best thing we can do is to minimize the positive error:
Five entries to consider:
…and compare to our stats:
001 - D&D.Sci stats
Link to original
- STR: 6/20
- CON: 14/20
- DEX: 13/20
- INT: 13/20
- WIS: 12/20
- CHA: 4/20
# | ΔSTR | ΔCON | ΔDEX | ΔINT | ΔWIS | ΔCHA | SUM |
---|---|---|---|---|---|---|---|
1081 | 2 | 2 | 3 | 0 | 0 | 2 | 11 |
2773 | 5 | 0 | 1 | 0 | 1 | 4 | 11 |
3881 | 2 | 2 | 0 | 3 | 2 | 0 | 9 |
4562 | 0 | 0 | 0 | 2 | 1 | 6 | 9 |
6316 | 7 | 0 | 0 | 1 | 0 | 1 | 9 |
Assets
- Python script for calculating the above results: d_n_d_sci.py.
- CSV list of entries: d_and_d_sci.csv.