Skip to main content

How do the views and outlooks and accomplishments of Greece and Rome compare to those of Western Europe during the Middle Ages and Renaissance?

This question seems to be addressing the intellectual and cultural achievements of the classical world versus those of medieval and Renaissance Europe. So this answer will not include a discussion of the military, diplomatic, or, for the most part, political achievements of either. The simplest way to answer such a broad question is to say that the cultural achievements and indeed the outlook of the medieval period and Renaissance era were heavily influenced by the Greeks and the Romans. While we usually associate the medieval period as a sort of intellectual backwater, it actually featured a great deal of creative thought. While the outlook was decidedly religious in nature, tending to regard mankind as debased in comparison with the divine, it nevertheless drew on a classical worldview advanced by Aristotle. The medieval philosophy known as Scholasticism, often associated with Thomas Aquinas, for example, was strongly influenced by Aristotle. 


The most explicit evocation of Greek and Roman thought, however, came with the Renaissance. Humanism, the philosophy that guided Renaissance thinkers, writers, and artists, emphasized a return to what were believed to be the classical ideals of the ancient Greeks and Romans. Scorning what they thought to be medieval ignorance, they turned especially to Roman writers like Livy and Ovid to celebrate man, his achievements, and his potential. They viewed Greek and Roman philosophers and writers as possessing knowledge that had been lost during the Middle Ages. In terms of outlook, we must speak very generally, but it is safe to say that the worldview of the Italian Renaissance in particular had more in common with the secularism of some Greek and Roman philosophers (Epicurus, for example) than that of the medieval period. The critical worldview embraced by the Greeks in particular resonated with Renaissance philosophers, and the example of participatory government based on a virtuous citizenry set by Romans of the Republican period was emulated by Machiavelli, among others. 

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