Editing
The Identity Continuity Problem and the Philosophy of Personal Survival
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} The Identity Continuity Problem and the Philosophy of Personal Survival is the "Study of the Persistent Self"βthe investigation of the "Philosophical Questions" (~Ancient GreeceβPresent) of "What" "Makes" a "Person" the "Same Person" "Over Time" and "Through" "Change," and "Whether" "Personal Identity" "Survives" "Radical Transformations" such as "Sleep," "Amnesia," "Gradual Neural Replacement," or "Whole Brain Emulation." While "WBE" (see Article 731) "Raises" the "Technical Question," **The Identity Problem** "Raises" the "Philosophical one." From "The Ship of Theseus" and "Personal Identity Criteria" to "Psychological Continuity" and "The Fission Problem," this field explores "The Philosophy of Survival." It is the science of "Temporal Selfhood," explaining why "Knowing" **"Who You Are"** is "Harder" than "It Seems"βand why the "Answer" "Matters" enormously for "Medicine," "Law," and "The Future of Digital Minds." </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Personal Identity''' β "The Philosophical Question" of "What" makes a "Person" at "Time Tβ" "The Same Person" as a "Person" at "Time Tβ." * '''The Ship of Theseus''' β "A Classic" "Thought Experiment": If every plank of a ship is replaced, is it "Still" "The Same Ship"? * '''Psychological Continuity''' β (John Locke, Derek Parfit). "The View" that "Personal Identity" "Consists" in "Continuity" of **"Memory," "Personality,"** and **"Psychological Connections."** * '''Physical Continuity''' β "The View" that "Personal Identity" "Consists" in "Continuity" of "A" **"Physical Substrate"** (The Brain). * '''The Fission Problem''' β "A Thought Experiment": "If" your "Brain" is "Split" and "Each Half" is "Transplanted" into a "New Body," there are now "Two People" β "Both" with "Equal" "Claim" to being "You." "Who" is "You"? * '''Derek Parfit''' β (1942β2017). "The Most Influential" "Modern Philosopher" on "Personal Identity." His "Book" ***Reasons and Persons*** (1984) "Argued" that "Personal Identity" is **"Not" "What Matters"** β "Psychological Continuity" is. * '''Narrative Identity''' β (Paul Ricoeur). "The View" that "The Self" is "Constituted" by "The Story" one "Tells" "About Oneself." * '''The Closest Continuer Theory''' β (Robert Nozick). "Personal Identity" "Goes" to "The" "Future Entity" that is the **"Closest Continuer"** of "The Present Self." * '''Persistence Conditions''' β "The Criteria" that "Must Be Met" for "A Person" to "Persist" through "Time" (Parfit: Overlapping chains of Psychological Connection). * '''Animalism''' β (Eric Olson). "The View" that "We Are" "Fundamentally" **"Biological Organisms"** β "Not" "Minds" or "Persons": "Our Identity" is "Biological Continuity." </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Identity continuity is understood through '''Connection''' and '''What Matters'''. '''1. The "Memory" Chain (Locke's Theory)''': "You are your memories." * (See Article 714). **John Locke** "Proposed" that "Personal Identity" "Consists" in **"Memory Continuity."** * "You" are "The Same Person" as "Yesterday's You" because "You Remember" "Yesterday." * "Problem": "You Cannot" "Remember" "Being" "Three Years Old." "Are You" "The Same Person" as that "Child"? * **"Overlapping chains"** of "Memory" (Parfit) "Extend" "Identity" "Transitively." * "Self" is **"A Chain."** '''2. The "Branching" Paradox (Fission Problem)''': "Both halves are equally you β but they can't both be you." * (See Article 731). "If" "Your Brain" is "Split" and "Each Half" "Gives Rise" to "A New Person," "Both" "People" have "Equal" "Psychological Continuity" with "The Original." * "But" they "Cannot Both" be "Identical" to "You" (Identity is transitive β they'd have to be identical to each other, which they aren't). * **Parfit's Solution**: "Personal Identity" is **"Not" "What Matters"**. "What Matters" is "Psychological Continuity" β whether "There Is" "One Continuer" or "Two." * "Survival" is **"Not Binary."** '''3. The "Gradual" Replacement (Theseus' Ship)''': "If replaced one neuron at a time, are you still you?" * (See Article 731). "A Neuroscientist" "Replaces" "Your Neurons" "One by One" with "Silicon Equivalents." * "At Each Step," the "Replacement" "Is Undetectable." * "At" "The End," your "Brain" is "Entirely Silicon." * "Were You" "The Same Person" "Throughout"? "At What Point" did "You" "Stop Being You"? * "Identity" is **"A Spectrum."** '''The 'Parfit' Reductionism (1984)'''': **Derek Parfit** "Argued" that "Persons" are "Not" "Fundamental" "Entities" β "They" are "Just" "Collections" of "Psychological Events" in "A Stream." "Personal Identity" is "Not" "A Deep Further Fact" but a **"Matter of Degree."** It "Liberated" "Ethics" from "The Straitjacket" of "Strict Identity." </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Psychological Continuity Score' (Calculating 'Identity Strength' Over Time):''' <syntaxhighlight lang="python"> def calculate_continuity_score(memory_overlap_pct, personality_overlap_pct, value_overlap_pct, time_gap_years): """ Shows how psychological continuity weakens over time and change. """ # Continuity decays with time and divergence base_score = (memory_overlap_pct + personality_overlap_pct + value_overlap_pct) / 3 time_decay = max(0, 1 - (time_gap_years * 0.005)) # 0.5% per year continuity = base_score * time_decay if continuity > 80: return f"IDENTITY: STRONG CONTINUITY ({round(continuity, 1)}%). Same person by most accounts." elif continuity > 50: return f"IDENTITY: MODERATE ({round(continuity, 1)}%). Same person in some respects." else: return f"IDENTITY: WEAK ({round(continuity, 1)}%). Substantially different person." # Case 1: You vs. yourself 5 years ago (high overlap, short gap) print(calculate_continuity_score(85, 80, 75, 5)) # Case 2: A WBE emulation (memories intact but substrate changed, many years) print(calculate_continuity_score(95, 90, 85, 50)) </syntaxhighlight> ; Philosophical Landmarks : '''Locke's ''Essay Concerning Human Understanding'' (1689)''' β "The First" "Systematic" "Memory-Based" "Theory" of **"Personal Identity."** : '''Hume's 'Bundle Theory'''' (1739) β "The Self" is "Just" **"A Bundle of Perceptions"** β "No" "Permanent 'I'." : '''Parfit's ''Reasons and Persons'' (1984)''' β "The Most" "Influential" "Modern Work": "Showing" "Personal Identity" is **"Not" "What Matters."** : '''Nozick's 'Closest Continuer'''' (1981) β "Identity" "Goes" to the **"Most Similar" "Future Entity"** β "The Basis" for "Law" and "Medicine." </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Theories of Personal Identity and WBE Implications ! Theory !! Criterion !! WBE Verdict || Fission Verdict |- | Psychological Continuity || "Memory/Personality overlap" || "Success (if memories intact)" || "Both survivors are 'you' (degree)" |- | Physical Continuity || "Brain continuity" || "Failure (new substrate)" || "Neither is 'you'" |- | Animalism || "Biological organism continuity" || "Failure (not biological)" || "Neither is 'you'" |- | Narrative Identity || "Story continuity" || "Success (story continues)" || "Two new stories begin" |- | Closest Continuer || "Most similar future entity" || "Success (if original destroyed)" || "No winner (tie)" |} '''The Concept of "Parfit's Liberation"''': Analyzing "The Ethics." (See Article 665). **Parfit** "Argued" that "Recognizing" the "Unreality" of "The" "Permanent Self" **"Liberates"** "Us" from "Selfishness." If "Future Me" is "Not" "Strictly Identical" to "Present Me," "Why" "Privilege" "My Future" over "Others' Futures"? **"Parfit's Ethics"** "Aligns" "Self-Interest" with **"Impartial Concern."** "Identity" is **"Altruism."** </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating Identity Continuity: # '''Law''': How does "Law" "Handle" **"Gradually-Replaced"** "Persons" (Dementia, WBE)? # '''WBE''': If "Parfit is Right," does "The WBE" "Identity Debate" **"Dissolve"** (It doesn't matter if it's "strictly" you)? # '''Ethics''': (See Article 665). Does **"Personal Identity"** "Matter" for "Moral Responsibility" (Can you "Punish" someone for "What" their "Earlier Self" did)? # '''Impact''': How does "The Philosophy" of "Identity" "Change" **"End-of-Life Law"** (Advance Directives, Euthanasia)? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''The 'Identity' Continuity AI''': (See Article 08). An "AI" that "Tracks" **"Psychological Continuity Scores"** over "A Lifetime" to "Resolve" "Legal Identity" "Disputes." # '''VR 'Fission' Thought Experiment''': (See Article 604). A "Walkthrough" where you "Experience" **"Waking Up" "As Both"** of the "Fission" "Products" to "Explore" "Subjective Identity." # '''The 'Personal Identity' Ledger''': (See Article 533). A "Blockchain" for **"Continuous"** "Recording" of "Psychological Continuity Markers" for "Legal Identity." # '''Global 'Identity' Law Reform''': (See Article 630). A "Planetary" "Legal Framework" for "Handling" **"WBE Identity," "Dementia," and "Radical Personal Change."** [[Category:Arts]] [[Category:Science]] [[Category:Philosophy]] [[Category:Ethics]] [[Category:History]] [[Category:Neuroscience]] [[Category:Psychology]] [[Category:Philosophy of Mind]] [[Category:Future Studies]] [[Category:Digital Immortality]] [[Category:Law]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information