Jump to content

Driving/Data: Difference between revisions

From RiskiPedia
Added alcohol, distracted driving, and speeding factors (from GPT conversation)
Update distracted driving table
 
(11 intermediate revisions by the same user not shown)
Line 60: Line 60:
* Technical background: [https://crashstats.nhtsa.dot.gov/Api/Public/ViewPublication/811160 NHTSA: Seat belt effectiveness]
* Technical background: [https://crashstats.nhtsa.dot.gov/Api/Public/ViewPublication/811160 NHTSA: Seat belt effectiveness]


'''Alcohol Impairment (Modifier)'''
'''Alcohol-impaired driving frequency (share of miles while impaired)'''


<datatable2 table="alcohol_impairment" columns="alcohol_level|alcohol_fatality_multiplier">
<datatable2 table="alcohol_frequency" columns="alcohol_frequency_label|alcohol_frequency_share">
<head>
<head>
!Alcohol status
!How often does the driver drive after drinking too much?
!Relative crash risk multiplier (fatality risk)
!Approximate share of miles while impaired
</head>
</head>
BAC = 0.00|1.0
Never|0
BAC ≥ 0.08|4.0
A few times per year|0.001
BAC ≥ 0.15|12.0
About once a month|0.005
About once a week|0.02
Several times a week|0.05
</datatable2>
</datatable2>


Drivers with a blood alcohol concentration (BAC) of 0.08 are approximately 4× more likely to crash than sober drivers, and at 0.15, at least 12× more likely.
These shares approximate the fraction of total miles driven while impaired (not the fraction of people). They translate intuitive frequencies (“a few times per year”, “once a month”, etc.) into small exposure shares so the multiplier applies only to that portion of miles.
* [https://www.nhtsa.gov/risky-driving/drunk-driving NHTSA: BAC crash risk]


'''Distraction (Modifier)'''
Calibration notes (assumptions; adjust as needed):
* “A few times per year” ≈ 0.1% of miles (e.g., ~10–20 impaired miles in ~10,000 annual miles).
* “About once a month” ≈ 0.5% of miles.
* “About once a week” ≈ 2% of miles.
* “Several times a week” ≈ 5% of miles.


<datatable2 table="distraction" columns="distraction_level|distraction_multiplier">
Background/prevalence:
* CDC summary: self-reported alcohol-impaired driving episodes occur at a non-zero rate in the population.
 
'''Phone-based visual–manual distraction (share of miles while actively interacting)'''
 
<datatable2 table="distraction_frequency" columns="distraction_frequency_label|distraction_frequency_share">
<head>
<head>
!Distraction type
!How often does the driver interact with a phone (dialing/texting/etc.) while driving?
!Relative crash risk multiplier
!Approximate share of miles while actively interacting
</head>
</head>
Model driving (no distraction)|1.0
None|0
Any handheld cell use|3.6
One interaction per trip|0.005
Texting (visual-manual)|6.1
Several interactions per trip|0.02
Dialing (visual-manual)|12.2
Lots of interactions per trip|0.05
</datatable2>
</datatable2>


Naturalistic driving data (SHRP2 study) showed that any handheld phone use increases crash risk by ~3.; texting by ~6.1×; dialing by ~12.2×. 
These options reflect self-reported patterns of phone use while driving, translated into approximate shares of total miles driven while actively interacting with the phone (visual–manual tasks)
* [https://en.wikipedia.org/wiki/Mobile_phones_and_driving_safety Summary of SHRP2 findings; texting risk ~23× for heavy vehicles, but dialing/texting relative to model driving is 12.2×/6.1×] :contentReference[oaicite:1]{index=1}
The RiskModels apply a higher crash risk **only** to that fraction of miles, using a multiplier of ~6.0× for active distraction (consistent with naturalistic driving studies).
 
Evidence background:
* Visual–manual phone use (dialing, texting) is strongly associated with crash risk, with multipliers between ~6× and 12× depending on task.
* Talking (handheld or hands-free) is not consistently linked to higher crash risk, so it is not modeled here.


'''Speeding (Modifier)'''
'''Speeding (Modifier)'''
Line 108: Line 122:
----
----


<RiskModel name="fatality_model" calculation="(1.26 / 100000000 * distance_miles)
<RiskModel name="fatality_model" calculation="1 - (2.718281828 ^ ( - ( (1.26 / 100000000) * distance_miles * time_fatality_multiplier * belt_fatality_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))">
  * time_fatality_multiplier
  * belt_fatality_multiplier
  * alcohol_fatality_multiplier
  * distraction_multiplier
  * speeding_multiplier">
Your estimated chance of being in a fatal crash is {{One_In_X|{result}}}.
Your estimated chance of being in a fatal crash is {{One_In_X|{result}}}.
</RiskModel>
</RiskModel>


<RiskModel name="injury_model" calculation="(75 / 100000000 * distance_miles) *
<RiskModel name="injury_model" calculation="1 - (2.718281828 ^ ( - ( (75 / 100000000) * distance_miles * time_injury_multiplier * belt_injury_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))">
  * time_injury_multiplier
  * belt_injury_multiplier
  * alcohol_injury_multiplier
  * distraction_multiplier
  * speeding_multiplier">
Your estimated chance of being injured in a crash is {{One_In_X|{result}}}.
Your estimated chance of being injured in a crash is {{One_In_X|{result}}}.
</RiskModel>
</RiskModel>
<RiskModel name="any_crash_model" calculation="1 - (2.718281828 ^ ( - ( (185.54886112876233 / 100000000) * distance_miles * time_injury_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))">
Your estimated chance of being in a police-reported crash is {{One_In_X|{result}}}.
</RiskModel>
''Calculation note'': Each model computes an expected count λ from the verbatim base rates (per 100 million vehicle miles traveled), scaled by distance and modifiers, then converts to a probability \(p = 1 - e^{-λ}\) using \(2.718281828^{-\lambda}\). Alcohol and phone-based visual–manual distraction are applied via exposure shares: the model blends \((1 - \text{share})\times 1 + \text{share}\times 4.0\) for alcohol and \((1 - \text{share})\times 1 + \text{share}\times 6.0\) for distraction so elevated risk applies only to those fractions of miles.


----
----
Line 130: Line 141:
''Note on uncertainty'': These are national averages and approximate modifiers. Actual risks vary by state, roadway type (urban/rural), weather, vehicle, driver demographics, and year-to-year changes. Modifiers are population-level and not individual predictions.
''Note on uncertainty'': These are national averages and approximate modifiers. Actual risks vary by state, roadway type (urban/rural), weather, vehicle, driver demographics, and year-to-year changes. Modifiers are population-level and not individual predictions.


Mostly generated by [https://openai.com/ GPT-5 Thinking]
Initially generated by [https://openai.com/ GPT-5 Thinking]

Latest revision as of 16:13, 3 September 2025

Baseline rates (verbatim; used directly in models)

The following U.S. national rates are taken verbatim from authoritative sources and are **not** converted here. Conversions to per-miles exposure are performed only inside the RiskModel calculations below.

  • Fatalities: **1.26 deaths per 100 million vehicle miles traveled (VMT)** in 2023 (national estimate).
 * NHTSA 2023 Traffic Fatalities Estimates  
 * IIHS: Fatality statistics
  • Injuries: **75 injuries per 100 million VMT** in 2022 (police-reported injuries, national estimate).
 * NHTSA: Traffic Safety Facts 2022

Distance Options

Distance choice Miles

100 miles

100

1,000 miles

1000

100,000 miles

100000

These rows provide user-friendly exposure choices. The RiskModels convert the per-100M-VMT base rates into expected counts for the chosen miles.

Time of Day (modifier)

Time of day Fatality risk multiplier Injury risk multiplier

Day

1.0

1.0

Night

3.56

1.47

Per-mile risk is higher at night: in 2022, ~53.9% of fatalities and ~32.9% of injury crashes occurred during roughly ~25% of VMT (nighttime). Using exposure-adjusted ratios yields ≈3.56× (fatalities) and ≈1.47× (injuries).

Seat-belt Usage (modifier)

Seat-belt usage Fatality risk multiplier Injury risk multiplier

Worn (car)

1.0

1.0

Not worn (car)

1.82

2.0

Worn (SUV/van/truck)

1.0

1.0

Not worn (SUV/van/truck)

2.5

2.857

Seat belts reduce fatal injury risk by ~45% in cars and ~60% in light trucks; moderate-to-critical injury by ~50% in cars and ~65% in light trucks. The multipliers above are the inverse of those reductions (i.e., increased risk when not wearing a belt).

Alcohol-impaired driving frequency (share of miles while impaired)

How often does the driver drive after drinking too much? Approximate share of miles while impaired

Never

0

A few times per year

0.001

About once a month

0.005

About once a week

0.02

Several times a week

0.05

These shares approximate the fraction of total miles driven while impaired (not the fraction of people). They translate intuitive frequencies (“a few times per year”, “once a month”, etc.) into small exposure shares so the multiplier applies only to that portion of miles.

Calibration notes (assumptions; adjust as needed):

  • “A few times per year” ≈ 0.1% of miles (e.g., ~10–20 impaired miles in ~10,000 annual miles).
  • “About once a month” ≈ 0.5% of miles.
  • “About once a week” ≈ 2% of miles.
  • “Several times a week” ≈ 5% of miles.

Background/prevalence:

  • CDC summary: self-reported alcohol-impaired driving episodes occur at a non-zero rate in the population.

Phone-based visual–manual distraction (share of miles while actively interacting)

How often does the driver interact with a phone (dialing/texting/etc.) while driving? Approximate share of miles while actively interacting

None

0

One interaction per trip

0.005

Several interactions per trip

0.02

Lots of interactions per trip

0.05

These options reflect self-reported patterns of phone use while driving, translated into approximate shares of total miles driven while actively interacting with the phone (visual–manual tasks). The RiskModels apply a higher crash risk **only** to that fraction of miles, using a multiplier of ~6.0× for active distraction (consistent with naturalistic driving studies).

Evidence background:

  • Visual–manual phone use (dialing, texting) is strongly associated with crash risk, with multipliers between ~6× and 12× depending on task.
  • Talking (handheld or hands-free) is not consistently linked to higher crash risk, so it is not modeled here.

Speeding (Modifier)

Speeding status Relative crash severity multiplier

At or below limit

1.0

Above limit

2.0

Speeding increases crash severity and overall risk—doubling speed quadruples kinetic energy, and speeding was involved in ~29% of U.S. traffic fatalities. Using a simplified 2× severity multiplier as a proxy.



  RiskModel: Driving/Data:fatality_model
Calculation: 1 - (2.718281828 ^ ( - ( (1.26 / 100000000) * distance_miles * time_fatality_multiplier * belt_fatality_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))
    Content: 
Your estimated chance of being in a fatal crash is {{One_In_X|{result}}}.

  RiskModel: Driving/Data:injury_model
Calculation: 1 - (2.718281828 ^ ( - ( (75 / 100000000) * distance_miles * time_injury_multiplier * belt_injury_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))
    Content: 
Your estimated chance of being injured in a crash is {{One_In_X|{result}}}.

  RiskModel: Driving/Data:any_crash_model
Calculation: 1 - (2.718281828 ^ ( - ( (185.54886112876233 / 100000000) * distance_miles * time_injury_multiplier * ( (1 - alcohol_frequency_share) + (alcohol_frequency_share * 4.0) ) * ( (1 - distraction_frequency_share) + (distraction_frequency_share * 6.0) ) * speeding_multiplier ) ))
    Content: 
Your estimated chance of being in a police-reported crash is {{One_In_X|{result}}}.

Calculation note: Each model computes an expected count λ from the verbatim base rates (per 100 million vehicle miles traveled), scaled by distance and modifiers, then converts to a probability \(p = 1 - e^{-λ}\) using \(2.718281828^{-\lambda}\). Alcohol and phone-based visual–manual distraction are applied via exposure shares: the model blends \((1 - \text{share})\times 1 + \text{share}\times 4.0\) for alcohol and \((1 - \text{share})\times 1 + \text{share}\times 6.0\) for distraction so elevated risk applies only to those fractions of miles.



Note on uncertainty: These are national averages and approximate modifiers. Actual risks vary by state, roadway type (urban/rural), weather, vehicle, driver demographics, and year-to-year changes. Modifiers are population-level and not individual predictions.

Initially generated by GPT-5 Thinking