Skip to main content

What are three specific lessons taught in Silas Marner by George Eliot, in detail?

One lesson in Silas Marner is that people are often accused unfairly simply because they are different. For example, Silas Marner has a "cataleptic fit" during church, and his friend William says, "to him, this trance looked more like a visitation of Satan than a proof of divine favour." William throws a suspicion of devilish behavior onto the innocent Silas. Silas is subsequently accused of stealing the church's funds, a crime he did not commit. William, Silas's friend, probably committed this crime but was able to blame it on Silas because Silas is marked as a bit odd but is, in actuality, a simple and good man.


The second lesson is that money alone does not make people happy. While Silas Marner turns to weaving and to hoarding the gold it brings him, he becomes less and less happy and more and more alone. Eliot writes of Silas in Chapter 5, "His gold, as he hung over it and saw it grow, gathered his power of loving together into a hard isolation like its own." In other words, as Silas accumulates more and more gold, he becomes further isolated from others. 


The third lesson is that love, rather than money, brings true happiness. Once Silas adopts the child Eppie, he becomes truly happy. In Chapter 14, Eliot writes:



"The gold had kept his thoughts in an ever-repeated circle, leading to nothing beyond itself; but Eppie was an object compacted of changes and hopes that forced his thoughts onward."



It is through loving and caring for Eppie that Silas discovers happiness and connection to other people and to the world beyond himself. The child is the true gold that Silas has long sought.

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