Skip to main content

In the poem "We Real Cool" by Gwendolyn Brooks, what are three literary devices used? What is the theme?

The theme of the short poem by Gwendolyn Brooks is that high school dropouts often feel proud and sure of themselves at first because they are bolstered by their peers, but eventually they will suffer the negative consequences of their choices. In the poem, the jazz-like rhythm and the multiple lines that end in "we" portray the cocky swagger of the seven who "left school." These teens believe they are "cool" as they go about their singing, drinking, dancing, and hanging out. The fact that there are seven of them and the repetition of "we" suggests that they gain their self-image from being part of this group. The last line stands in harsh contrast to the rest of the defiant words; they will pay for their poor choices eventually. The chances of their dying young are high.


Several poetic devices are used in the poem. Consonance is used in "real cool" with the repeated end /l/ sound emphasizing the overconfident attitude of the teens. Examples of alliteration are "lurk late," "strike straight," and "jazz June." The rhymes that occur not in end position but in the penultimate word of each line are an unusual technique. This is paired with another unusual rhyming technique: using identical rhymes at the end of each line except the last. The technique that gives the poem its unique feel is the ironic use of enjambment and caesura. Normally a line that ends without punctuation should be read smoothly to the next line without pausing. This is called enjambment. Caesura is a hard stop in the middle of a line of poetry, which occurs in every line of this poem except the last. However, because of the repeated "we," which is the last word of each line but the beginning of a new sentence, readers are tempted to pause after "we" before going to the next line. This is, in fact, what Brooks intended. (You can listen to her read her own poem at the link below.) Thus the poem defies the rules for reading poetry, just as the seven have defied the rules of society by dropping out of school. Finally, the poem ends with irony. The dire sentence imposed on the seven at the end stands in stark contrast to the lively arrogance they exhibit in the rest of the poem. Having the "we" deliver the prophecy of their own demise is ironic since they probably don't understand or believe those words--at least not yet. 

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