|
| 1 | +# Universal Credit rebalancing reforms |
| 2 | + |
| 3 | +The Universal Credit rebalancing reforms represent changes to Universal Credit provisions introduced through the Universal Credit Bill. These reforms take effect from April 2026 and are designed to adjust benefit levels and eligibility criteria. |
| 4 | + |
| 5 | +## Overview |
| 6 | + |
| 7 | +The reforms consist of two main components: |
| 8 | + |
| 9 | +1. **Health element changes for new claimants**: New Universal Credit claimants from April 2026 onwards receive a fixed health element amount, while existing claimants continue to receive inflation-linked increases. |
| 10 | + |
| 11 | +2. **Standard allowance uplifts**: The standard allowance receives additional uplifts beyond the annual inflationary increase from 2026-2029. |
| 12 | + |
| 13 | +## Health element changes |
| 14 | + |
| 15 | +From April 2026, new Universal Credit claimants who qualify for the Limited Capacity for Work-Related Activity (LCWRA) element receive a fixed monthly amount of £217.26, rather than the inflation-adjusted amount that pre-2026 claimants continue to receive. |
| 16 | + |
| 17 | +The implementation uses transition probabilities based on WPI Economics analysis for the Trussell Trust, derived from administrative Personal Independence Payment data. The probability of being a new claimant varies by year: |
| 18 | + |
| 19 | +- 2026: 11% |
| 20 | +- 2027: 13% |
| 21 | +- 2028: 16% |
| 22 | +- 2029: 22% |
| 23 | + |
| 24 | +## Standard allowance uplifts |
| 25 | + |
| 26 | +The standard allowance receives additional percentage uplifts beyond the normal inflationary increase: |
| 27 | + |
| 28 | +- 2026: 2.3% additional uplift |
| 29 | +- 2027: 3.1% additional uplift (cumulative) |
| 30 | +- 2028: 4.0% additional uplift (cumulative) |
| 31 | +- 2029: 4.8% additional uplift (cumulative) |
| 32 | + |
| 33 | +These uplifts are applied to the previous year's standard allowance amount and compound over time. |
| 34 | + |
| 35 | +## Implementation |
| 36 | + |
| 37 | +The reforms are implemented through: |
| 38 | + |
| 39 | +- **Parameters**: Three YAML files define the reform's activation status, health element amount for new claimants, and standard allowance uplift rates. |
| 40 | +- **Scenario modifier**: The `add_universal_credit_reform` function applies the changes to Universal Credit calculations during microsimulation. |
| 41 | +- **Scenario**: The `universal_credit_july_2025_reform` scenario enables the reforms in policy analysis. |
| 42 | + |
| 43 | +## Examples |
| 44 | + |
| 45 | +You can use these reforms in your own analysis by creating a `Simulation` with parametric changes to modify the reform parameters. |
| 46 | + |
| 47 | +### Disabling the rebalancing reforms entirely |
| 48 | + |
| 49 | +```python |
| 50 | +from policyengine_uk import Simulation, Scenario |
| 51 | + |
| 52 | +# Disable the reforms from 2026 onwards |
| 53 | +scenario = Scenario(parameter_changes={ |
| 54 | + "gov.dwp.universal_credit.rebalancing.active": False, |
| 55 | +}) |
| 56 | + |
| 57 | +sim = Simulation(scenario=scenario) |
| 58 | +``` |
| 59 | + |
| 60 | +### Changing the standard allowance uplift parameters |
| 61 | + |
| 62 | +```python |
| 63 | +from policyengine_uk import Simulation, Scenario |
| 64 | + |
| 65 | +# Set different uplift rates - e.g. 5% in 2026, 7% in 2027 |
| 66 | +scenario = Scenario(parameter_changes={ |
| 67 | + "gov.dwp.universal_credit.rebalancing.standard_allowance_uplift": { |
| 68 | + "2026-01-01": 0.05, |
| 69 | + "2027-01-01": 0.07, |
| 70 | + "2028-01-01": 0.07, |
| 71 | + "2029-01-01": 0.07 |
| 72 | + } |
| 73 | +}) |
| 74 | + |
| 75 | +sim = Simulation(scenario=scenario) |
| 76 | +``` |
| 77 | + |
| 78 | +### Changing the health element amount for new claimants |
| 79 | + |
| 80 | +```python |
| 81 | +from policyengine_uk import Simulation, Scenario |
| 82 | + |
| 83 | +# Set the new claimant health element to £250 per month |
| 84 | +scenario = Scenario(parameter_changes={ |
| 85 | + "gov.dwp.universal_credit.rebalancing.new_claimant_health_element": { |
| 86 | + "2026-01-01": 250.00 |
| 87 | + } |
| 88 | +}) |
| 89 | + |
| 90 | +sim = Simulation(scenario=scenario) |
| 91 | +``` |
| 92 | + |
| 93 | +## Legislative reference |
| 94 | + |
| 95 | +The reforms are based on provisions in the Universal Credit Bill, available at: https://bills.parliament.uk/publications/62123/documents/6889. |
0 commit comments