Skip to main content

meaning - Is “you’re the door on the right.” grammatically correct?


The you is Harry Potter. I’m really curious about the grammatical construction and the reason why JKR chose it.



”Mrs. Weasley, why – ?”


”Ron and Hermione will explain everything, dear, I’ve really got to dash,” Mrs. Weasley whispered distractedly. “There” – they had reached the second landing – “you’re the door on the right. I’ll call you when it’s over.” (Harry Potter 5 [US Version]: p.62)



N.B.: Mrs. Weasley has just led Harry to his room. She is in a rush because she has to attend a meeting downstairs.


I think it means "your room is at the door on the right," but Mrs. Weasley might be making a mistake because she’s in hurry. I don’t know for sure, though.



  1. What’s the true meaning of “you’re the door on the right”?

  2. If it’s grammatically acceptable, is there any omission in the sentence?

  3. If it’s grammatically acceptable, what situation do you use it in? And what’s the difference in listeners’ impressions between this kind (a-person-is-an-object type) of sentence and the more common version?

  4. Would you give me some examples of a-person-is-an-object sentences?



Answer





  1. Your understanding of the sentence is correct—it means that Harry's room is the one on the right.




  2. It is grammatically acceptable, but a sentence that is grammatically correct is not necessarily meaningful. In this case, however, it is understandable, but your phrasing of the sentence would be the complete form.




  3. Personally, I would not use this construction; it's a rather unusual one. Using this sentence might imply familiarity or distraction, depending on the observer.




  4. I can think of several, but they are not in the same style as your quote. Most sentence of this type, such as You are my doll, use meanings that have become embedded in the language and are reported on in dictionaries. Sentences like those in your quote are extremely unlikely to be encountered and I would not recommend using them.




Comments

Popular posts from this blog

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

A man has a garden measuring 84 meters by 56 meters. He divides it into the minimum number of square plots. What is the length of the square plots?

We wish to divide this man's garden into the minimum number of square plots possible. A square has all four sides with the same length.Our garden is a rectangle, so the answer is clearly not 1 square plot. If we choose the wrong length for our squares, we may end up with missing holes or we may not be able to fit our squares inside the garden. So we have 84 meters in one direction and 56 meters in the other direction. When we start dividing the garden in square plots, we are "filling" those lengths in their respective directions. At each direction, there must be an integer number of squares (otherwise, we get holes or we leave the garden), so that all the square plots fill up the garden nicely. Thus, our job here is to find the greatest common divisor of 84 and 56. For this, we prime factor both of them: `56 = 2*2*2*7` `84 = 2*2*3*7` We can see that the prime factors and multiplicities in common are `2*2*7 = 28` . This is the desired length of the square plots. If you wi...