Skip to main content

How do Max and Freak regard each other in Philbrick's Freak the Mighty?

Max and Freak (Kevin) are best friends. They seem like the two most unlikely boys to become friends, but, actually, it works out well for the both of them. In the beginning, Max, who is also the narrator, says that he "never had a brain until Freak came along" (1). That is to say that Kevin actually teaches Max how to use his brain to read and to write. Kevin believes in Max when other adults and teachers believed that he should be in the learning-disabled classes. Kevin gives Max the tools to become his own man, gain confidence in himself, and believe that he can learn just like anyone else can. Max, therefore, regards Kevin with great respect, love, and appreciation.


Freak, on the other hand, gets a horse out of the deal. Because Kevin is stricken with the effects of a birth defect, he doesn't grow normally, and he can't walk or even stand like other kids. When Max picks him up and carries him around on his shoulders, Freak has the time of his life! He even accidentally tells Max to raise his hoof at one point, leading the reader to infer that Freak likes to pretend that Max is a horse. Together, they call themselves Freak the Mighty because each one makes up for the other's weaknesses. Furthermore, Max believes Kevin is the smartest boy he knows and Kevin appreciates Max for hauling him around school and on all the quests they go on together.

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...