Interesting concept, but 100 words is really quite a lot to get through... It's tiresome trudging through the easy words at the start, and I never got to see the interesting words before getting bored. I've seen other systems like this calibrate far more quickly by assigning a sort of score and confidence behind the scenes. Confidence starts out low and increases over time - correct/incorrect answers rapidly adjust s…
How many of the 170k English words do you know?
171–180 of 575 posts
Re: How many of the 170k English words do you know?
#172I’m not sure how you’d gauge what knowing each word would indicate.
Also adequate options, that sound plausible.
Re: How many of the 170k English words do you know?
#173Re: How many of the 170k English words do you know?
#174Earlier quoted context omitted.
also interrobang is rendered as bang-interro (!?) when it should be interro (?) then bang (!) -> (?!)
There isn't a "correct" way to incorrectly render the interrobang as 2 separate characters. The name was never supposed to suggest a certain ordering instead of just being both at the same time. The name "interrobang" just sounded better than "exclamaquest" (or any of the alternatives Type Talks readers submitted).
Re: How many of the 170k English words do you know?
#175I got an estimate of 70,550, from a score of 87/100 (20/18/16/17/16). Not native English speaker. I suppose the words must be weighed, because other people in the thread with more correct words got a not much higher estimate.
From the website with just one more click - like one more wafer thin mint.
According to the Oxford English Dictionary (Second Edition), there are approximately 171,476 words in current use.
However, most native speakers have an active vocabulary between 15,000 and 35,000 words. The Algorithm
We use Stratified Sampling. Instead of testing random words, we divide the language into 5 distinct difficulty bands based on frequency of use:
1. Core Basics~3,000 words
2. Intermediate~7,000 words
3. Advanced~10,000 words
4. Expert~25,000 words
5. The Obscure~40,000+ words
Calculation"If you answer 2 out of 3 'Intermediate' questions correctly, we estimate you know roughly 66% of the 7,000 words in that band."
Total Score = Σ (Accuracy in Band × Band Size)
Re: How many of the 170k English words do you know?
#176That was fun. Bit confused by the result because it says I was "wow are you stephen fry?" Which I assume meant I did decent. (72K). But then below it said "you are a man of few words". I take it the latter is just because I've only done the test once? But it's mixed messaging on first attempt I think.
Re: How many of the 170k English words do you know?
#177It seems like the right answer is usually the longest of the choices, I managed to get a few just by picking the longest. It would also be nice if there was a "I don't know" instead of guessing and skewing the results by getting it right, though maybe thats accounted for
You are correct. I tested that hypothesis about a dozen times and it seems that if you always pick the longest you’ll get it right somewhere in the high 70s to mid 80s. For anyone interested in testing for themselves, open the website to the first question then run this in the console (not going to spend time optimising it, it works well enough for the purpose):
let loopCount = 0
const loop = setInterval(() => {
Array.from(document.querySelectorAll("button")).slice(0, 4).reduce((long, curr) => curr.textContent.length > long.textContent.length ? curr : long).click()
setTimeout(() => Array.from(document.querySelectorAll("button")).at(-1).click(), 100)
setTimeout(() => Array.from(document.querySelectorAll("button")).at(-1).click(), 200)
loopCount++
if (loopCount === 100) clearInterval(loop)
}, 500)Re: How many of the 170k English words do you know?
#178Earlier quoted context omitted.
> it's intentional. What is? > I'm guessing it's testing our susceptibility to machine-generated compliments I fail to see the point. For one, the compliments aren’t particularly good or interesting; for another, I didn’t even read them (I just went back to check after your comment), I simply clicked when seeing green.
too many clicks per word. and the distance between click points. that's intentional. well the point would be to see how susceptible you are to that. They're figuring out where your cost vs reward tipping point is.
Anyway, if they were running metrics on that they just became useless because I automated responding to it a bunch of times.
Re: How many of the 170k English words do you know?
#179“You mastered 98 new words! THE VERDICT You are a person of few words, or perhaps just a mysterious one. Quite intriguing.” —- This sounds more like a cute assessment of only getting two words right. And what do you mean “new words”? It wasn’t until eighty-odd words in that I actually got a word I didn’t know and had to guess by ruling out multiple-choice options.
Nice work. I only got 90. It also summarized that as though I might learn English one day. Kind of an odd result. I’m not offended, just confused.
Re: How many of the 170k English words do you know?
#180Interesting concept, but 100 words is really quite a lot to get through... It's tiresome trudging through the easy words at the start, and I never got to see the interesting words before getting bored. I've seen other systems like this calibrate far more quickly by assigning a sort of score and confidence behind the scenes. Confidence starts out low and increases over time - correct/incorrect answers rapidly adjust s…
I got tired after 8 words, looked at how many I'm suppose to know and gave up.
It'd be improved with statistical analysis; just progressively get harder and try to guess. If you wanted to gameify, you could update the stats after each answer.