Editing
Adolescent Psychology
(section)
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!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Risk Calculation' (Why teens take chances):''' <syntaxhighlight lang="python"> def calculate_risk_taking(peer_presence, brain_age): """ Teens take 2x-3x more risks when friends are watching. """ base_risk = 0.1 # Impulse control improves as brain_age approaches 25 impulse_control = (brain_age / 25) # Peers trigger the reward system reward_sensitivity = 5.0 if peer_presence else 1.0 final_risk = (base_risk * reward_sensitivity) / impulse_control return round(min(final_risk, 1.0), 2) # 15-year-old alone print(f"15yo Alone: {calculate_risk_taking(False, 15)}") # 15-year-old with friends print(f"15yo With Friends: {calculate_risk_taking(True, 15)}") # 25-year-old with friends print(f"25yo With Friends: {calculate_risk_taking(True, 25)}") </syntaxhighlight> ; Adolescent Landmarks : '''Erikson's Psychosocial Stages''' → The theory that the primary "Job" of a teen is to resolve the crisis of Identity. : '''The 'Middletown' Studies''' → Famous sociological studies of American teens that showed the shift from family-centered to peer-centered life. : '''Digital Adolescence''' → The modern era where the "Imaginary Audience" is no longer imaginary—it's a real audience on Instagram or TikTok. : '''Storm and Stress (G. Stanley Hall)''' → The original theory that adolescence is necessarily a time of conflict and mood swings. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
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)
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