Skip to main content

http://www.yalelawjournal.org/pdf/922_gvpzasif.pdf Please write a summary of the article.

This article is about which rights are protected under the Due Process Clauses of the 5th and 14th Amendments to the Constitution. The essential question related to this debate is whether these amendments only protect "procedural rights," which refers to the process that states and the federal government follow in judicial proceedings, or whether these clauses also protect what are called "substantive rights," which are the actual rights given to individuals.


The author of this article, Williams, looks at the historical context in which each of these amendments was written. He argues that when the 5th Amendment was ratified in 1791, there was no recognition of substantive due process rights. He writes: 






"The preceding review of the historical evidence regarding the early understandings of 'due process of law' is largely supportive of the traditional view that the Due Process Clause of the Fifth Amendment was originally understood either not to constrain the legislature at all, or, at most, to limit the legislature’s discretion in prescribing certain modes of judicial procedure" (page 454).






However, by 1868, when the 14th Amendment was ratified, there was a form of substantive due process rights recognized by courts in at least 20 out of the then 37 states and by the Supreme Court. The author writes that in the period from 1791 to 1868:






"Due process concepts evolved dramatically through judicial elaboration of due process and similar provisions in state constitutions, and through invocations of substantive due process arguments by both proslavery and abolitionist forces in connection with debates concerning the expansion of slavery in the federal territories" (page 416).






That is, by the time the 14th Amendment was ratified, many state constitutions recognized a form of substantive due process rights.


However, the judicial system has often assumed that the due process rights in both amendments are the same. Instead, the author argues for what he calls the "divergent meanings model" of the Due Process Clauses of the 5th and 14th Amendments, meaning that the original meanings of the clauses in both amendments were not the same. 

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