Editing
Extreme Value Theory
(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 Return Period' (Calculating how likely a disaster is this year):''' <syntaxhighlight lang="python"> def calculate_disaster_risk(return_period_years, years_of_operation): """ Shows why 'Rare' events become 'Certain' over long times. """ # Chance of NOT happening in 1 year p_safe_year = 1 - (1 / return_period_years) # Chance of NOT happening in N years p_safe_total = p_safe_year ** years_of_operation # Chance of HAPPENING at least once p_disaster = 1 - p_safe_total return { "Disaster Type": f"{return_period_years}-Year Event", "Time Frame": f"{years_of_operation} years", "Probability of Hit": f"{round(p_disaster * 100, 2)}%" } # Case: A '100-Year Flood' and a house that stands for 30 years print(calculate_disaster_risk(100, 30)) # Case: A '500-Year Event' and a nuclear plant that stands for 50 years print(calculate_disaster_risk(500, 50)) </syntaxhighlight> ; EVT Landmarks : '''The Dutch Flood Protection (Delta Works)''' β The ultimate EVT project. After a massive flood in 1953, the Netherlands built "Dams" designed for a "1-in-10,000-Year" extreme event using EVT math. : '''The 'October 1987' Crash''' β A "20-Sigma" event that destroyed most financial models of the time, proving that "Fat Tails" are real and that "Extreme Value math" is needed for banking. : '''Climate Change 'Records'''' β Why is "Every year the hottest on record"? EVT helps us distinguish between "Natural extreme swings" and a "Shifting distribution" (the whole tail is moving). : '''The 'Tower' Design''' β How the Burj Khalifa or the Eiffel Tower survive "Extreme Winds"βengineers use EVT to find the "Maximum probable gust" over the next 200 years. </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