Criminal Law

From BloomWiki
Revision as of 01:49, 25 April 2026 by Wordpad (talk | contribs) (BloomWiki: Criminal Law)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?

Criminal Law and Procedure is the system of rules that defines what conduct is prohibited by the state because it threatens public safety and welfare, and the process used to investigate, prosecute, and punish those who violate these rules. While "Civil Law" deals with disputes between individuals (like a broken contract), "Criminal Law" is about the state versus the individual. It is built on the fundamental tension between the need for Public Order and the protection of Individual Liberty. By understanding the "Elements of a Crime" and the "Rights of the Accused," we can see how a society balances justice with mercy.

Remembering[edit]

  • Criminal Law — The body of law that relates to crime.
  • Actus Reus — The "Guilty Act"; the physical act of committing a crime.
  • Mens Rea — The "Guilty Mind"; the intention or knowledge of wrongdoing.
  • Felony — A serious crime punishable by more than one year in prison (e.g., murder, robbery).
  • Misdemeanor — A less serious crime punishable by a fine or a short jail term (e.g., petty theft).
  • Due Process — The legal requirement that the state must respect all legal rights that are owed to a person.
  • Probable Cause — The standard by which police have the authority to make an arrest or conduct a search.
  • Miranda Rights — The right to remain silent and the right to an attorney (to prevent self-incrimination).
  • Indictment — A formal charge or accusation of a serious crime.
  • Plea Bargain — An agreement where the defendant pleads guilty to a lesser charge in exchange for a more lenient sentence.
  • Exclusionary Rule — A legal rule that prevents evidence collected in violation of the defendant's rights from being used in a trial.
  • Double Jeopardy — The prosecution of a person twice for the same offense (prohibited by the 5th Amendment).
  • Sentence — The punishment assigned to a defendant found guilty by a court.
  • Rehabilitation — The goal of "fixing" the criminal so they don't commit crimes again.
  • Retribution — The goal of "punishing" the criminal because they deserve it (Eye for an eye).

Understanding[edit]

A crime is only "proven" if you have both the Act and the Intent.

1. The Two Parts of a Crime:

  • Actus Reus: You must have actually done something. (Thinking about robbing a bank is not a crime; walking in with a gun is).
  • Mens Rea: You must have intended to do it. If you accidentally pick up someone else's bag, it's not theft because you lacked the "Guilty Mind."

2. The Burden of Proof: In a criminal trial, the defendant is Presumed Innocent. The state must prove guilt "Beyond a Reasonable Doubt." This is a much higher bar than in civil law (which only needs "more likely than not"). It is better that ten guilty men go free than one innocent man be punished.

3. The Goals of Punishment:

  • Deterrence: To stop others from doing the same thing.
  • Incapacitation: To keep the person away from society (prison).
  • Retribution: Moral "payback."
  • Rehabilitation: Transforming the person through education or therapy.

Criminal Procedure: This is the "Rulebook" for the police and courts. It ensures that even a person accused of a terrible crime has a fair trial. Without procedure, the government could simply "disappear" its enemies.

Applying[edit]

Modeling 'The Exclusionary Rule' (Fruit of the Poisonous Tree): <syntaxhighlight lang="python"> def is_evidence_admissible(was_search_legal, was_warrant_obtained):

   """
   Shows how illegal police work ruins a case.
   """
   if was_search_legal:
       return "Admissible: Standard procedure followed."
   if was_warrant_obtained:
       return "Admissible: Judge authorized the search."
       
   return "INADMISSIBLE: Evidence is 'Fruit of the Poisonous Tree'."
  1. Scenario: Police break into a house without a warrant and find a gun.

print(is_evidence_admissible(False, False))

  1. Even if the gun proves the person is a murderer, the court
  2. might throw it out to punish the police for breaking the rules.

</syntaxhighlight>

Legal Safeguards
The 4th Amendment → Protection against "unreasonable searches and seizures."
The 5th Amendment → Protection against self-incrimination and double jeopardy.
The 6th Amendment → The right to a speedy trial and a public defender.
The 8th Amendment → Protection against "cruel and unusual punishment."

Analyzing[edit]

Civil vs. Criminal Law
Feature Civil Law Criminal Law
Parties Individual vs. Individual State vs. Individual
Goal !! Compensation / Resolution !! Punishment / Public Safety
Burden of Proof Preponderance of Evidence (>50%) Beyond a Reasonable Doubt (>99%)
Result Money / Damages Prison / Fines / Community Service

The Concept of "Strict Liability": These are rare crimes where "Intent" doesn't matter. If you sell alcohol to a minor, even if you "honestly thought" they were 21, you are still guilty. Analyzing these exceptions is a key task of criminal legal theory.

Evaluating[edit]

Evaluating a criminal justice system:

  1. Recidivism Rate: How many people commit crimes again after being released?
  2. Disparate Impact: Does the system punish people of one race or class more harshly than others for the same crime?
  3. Wrongful Conviction Rate: How many innocent people are in prison?
  4. Victim Satisfaction: Does the system provide "Restorative Justice" for the person who was harmed?

Creating[edit]

Future Frontiers:

  1. Predictive Policing: Using AI to predict where crimes will happen (Minority Report style).
  2. Neuro-Law: Using brain scans to see if a person was actually "capable" of intent (e.g., did a brain tumor cause the crime?).
  3. Cyber-Criminal Law: Defining crimes in the digital realm like "doxing," "swatting," or "crypto-theft."
  4. Abolitionism vs. Reform: The debate over whether prisons should be replaced entirely by community-based healing and restitution.