Skip to main content

What is a definition of history?

Napoleon Bonaparte defined history as "a fable retold." Interestingly, the word for both history and story in his language (French) are the same word: histoire. Another wording of this definition is that history is the record of events that suits the powers in control. 


Bonaparte's and the other definition notwithstanding, part of history is usually objective and accurate; that is, the record of significant events from the past. Here is one definition that is certainly workable:



History is a narration of the events which have happened among mankind, including an account of the rise and fall of nations, as well as of other great changes which have affected the political and social condition of the human race.



That history changes according to who is in power, or what ideology is prevalent does have some substantiation as educators can attest. For, those who have been teaching History courses for some decades know how textbooks from even as little as a decade ago demonstrate that there are now some different interpretations of events. Or, for instance, if a war's history is examined in an American textbook, and then in a textbook from another country that was involved in the same war, there are usually some differing interpretations on certain events. (There are teachers in the U.S. who have had foreign exchange students and will attest to this. When they read about their own country's involvement in wars and such in American textbooks, these students often argue that the history is recorded incorrectly.)


Literature, too, is history as it is the recording of man's thoughts and emotions and struggles--the history of cultures.


A simple definition from a dictionary is that history is 



a chronological record of significant events (as affecting a nation or institution) often including an explanation of their causes.



Perhaps the difficulty lies in finding the "explanation." 

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