Use this skill with your AI agent
Paste this skill into your AI agent's context, or save the file to your project. Works with any AI agent that reads markdown.
| 1 | --- |
| 2 | name: pa-income-tax |
| 3 | description: Triggers when the taxpayer is a Pennsylvania resident sole proprietor or single-member LLC needing to file Pennsylvania Form PA-40. Covers Pennsylvania's flat 3.07% income tax on eight classes of income, the unique PA rules that disallow many federal deductions, net profits computation for self-employed, and interaction with local earned income taxes. Must be loaded alongside us-tax-workflow-base and us-federal-return-assembly. |
| 4 | jurisdiction: US-PA |
| 5 | version: "0.1" |
| 6 | validation_status: ai-drafted-q3 |
| 7 | --- |
| 8 | |
| 9 | # Pennsylvania Individual Income Tax Skill — Self-Employed / Sole Proprietor |
| 10 | |
| 11 | > **Scope.** Pennsylvania Form PA-40 for tax year 2025 for full-year Pennsylvania resident sole proprietors and disregarded single-member LLCs. Pennsylvania is an unusual state with a flat tax rate, no standard deduction, no personal exemptions, and a unique class-of-income system that differs significantly from most states. |
| 12 | > **Quality tier.** Q3 — AI-drafted, not independently verified. All rates and thresholds have been researched from primary sources but must be confirmed by a qualified professional before use in return preparation. |
| 13 | |
| 14 | --- |
| 15 | |
| 16 | ## Section 1: Metadata |
| 17 | |
| 18 | | Field | Value | |
| 19 | |---|---| |
| 20 | | Tax year covered | 2025 (returns due April 15, 2026) | |
| 21 | | Primary form | PA-40 (Pennsylvania Personal Income Tax Return) | |
| 22 | | Tax authority | [Pennsylvania Department of Revenue](https://www.pa.gov/agencies/revenue/) | |
| 23 | | Tax type | Flat rate income tax (3.07%) | |
| 24 | | Currency date | May 2026 | |
| 25 | |
| 26 | **Primary sources:** |
| 27 | |
| 28 | | Source | URL | |
| 29 | |---|---| |
| 30 | | 72 P.S. § 7302 (tax rate) | https://www.legis.state.pa.us/cfdocs/legis/li/uconsCheck.cfm?yr=1971&sessInd=0&act=2 | |
| 31 | | PA-40 Instructions (2025) | https://www.pa.gov/agencies/revenue/resources/tax-types-and-information/personal-income-tax/ | |
| 32 | | PA Department of Revenue — Personal Income Tax | https://www.pa.gov/agencies/revenue/resources/tax-types-and-information/personal-income-tax/ | |
| 33 | |
| 34 | --- |
| 35 | |
| 36 | ## Section 2: Quick reference — rates and thresholds |
| 37 | |
| 38 | ### Tax rate |
| 39 | |
| 40 | | Item | Value | |
| 41 | |---|---| |
| 42 | | Pennsylvania personal income tax rate | **3.07% flat** (all income, all filing statuses) | |
| 43 | |
| 44 | Pennsylvania does NOT have graduated brackets. All taxable income is taxed at the same 3.07% rate. |
| 45 | |
| 46 | ### Key differences from most states |
| 47 | |
| 48 | | Feature | Pennsylvania rule | |
| 49 | |---|---| |
| 50 | | Standard deduction | **None** | |
| 51 | | Personal exemption | **None** | |
| 52 | | Itemized deductions | **Not allowed** (PA does not use federal Schedule A) | |
| 53 | | Starting point | **NOT federal AGI or federal taxable income** — PA computes each class of income independently | |
| 54 | | Net operating loss | **Not allowed** (losses in one class cannot offset income in another class) | |
| 55 | | Retirement income | **Fully exempt** (pensions, 401(k), IRA distributions, Social Security) | |
| 56 | |
| 57 | ### Eight classes of income |
| 58 | |
| 59 | Pennsylvania taxes eight separate classes of income. Each class is computed independently, and losses in one class generally cannot offset income in another. |
| 60 | |
| 61 | | Class | Description | Relevant to sole proprietors? | |
| 62 | |---|---|---| |
| 63 | | 1. Compensation | Wages, salaries, tips, fees | Yes (if also W-2 employed) | |
| 64 | | 2. Net profits | Business income (Schedule C equivalent) | **Yes — primary class** | |
| 65 | | 3. Interest | Interest income | Yes | |
| 66 | | 4. Dividends | Dividend income | Yes | |
| 67 | | 5. Rental/royalty | Net income from rents and royalties | Yes (if applicable) | |
| 68 | | 6. Estate/trust | Income from estates and trusts | Rare | |
| 69 | | 7. Gambling/lottery | Gambling and lottery winnings | If applicable | |
| 70 | | 8. Sale of property | Gains from sale of property | Yes (if applicable) | |
| 71 | |
| 72 | ### Tax forgiveness (low-income provision) |
| 73 | |
| 74 | PA provides a "tax forgiveness" credit for low-income taxpayers based on eligibility income and family size. |
| 75 | |
| 76 | | Eligibility income | Single (no dependents) | With 1 dependent | With 2+ dependents | |
| 77 | |---|---|---|---| |
| 78 | | 100% forgiveness | $6,500 or less | $6,500 plus $9,500 per dep | Varies | |
| 79 | |
| 80 | The threshold increases are $9,500 per dependent for 2025. The program phases out gradually. See Schedule SP. |
| 81 | |
| 82 | ### Income threshold for filing |
| 83 | |
| 84 | | Tax year | Filing threshold | |
| 85 | |---|---| |
| 86 | | 2025 | $11,000 | |
| 87 | | 2026 | $14,000 | |
| 88 | |
| 89 | --- |
| 90 | |
| 91 | ## Section 3: How this skill works with the federal return |
| 92 | |
| 93 | **Pennsylvania does NOT start from federal AGI or federal taxable income.** Instead, Pennsylvania computes each class of income independently using Pennsylvania-specific rules. |
| 94 | |
| 95 | For a sole proprietor, the most important class is **Class 2: Net Profits**, which corresponds (roughly) to federal Schedule C but with significant differences: |
| 96 | |
| 97 | **Key flow for self-employed:** |
| 98 | |
| 99 | 1. Compute PA net profits (PA Schedule C equivalent with PA-specific rules) |
| 100 | 2. Compute each other class of income separately |
| 101 | 3. Sum all eight classes → Total PA taxable income |
| 102 | 4. Multiply by 3.07% → PA income tax before credits |
| 103 | 5. Apply tax forgiveness (if eligible) and other credits → PA income tax liability |
| 104 | |
| 105 | ### Critical differences in computing net profits |
| 106 | |
| 107 | Pennsylvania net profits computation starts similarly to federal Schedule C but **disallows many federal deductions:** |
| 108 | |
| 109 | | Federal deduction | PA treatment | |
| 110 | |---|---| |
| 111 | | 50% of self-employment tax | **Not deductible** on PA return | |
| 112 | | Self-employed health insurance | **Not deductible** on PA return (but may be deductible as a business expense if structured correctly) | |
| 113 | | SEP/SIMPLE/solo 401(k) contributions | **Not deductible** on PA return (PA exempts the retirement income when distributed, but does not allow the contribution deduction) | |
| 114 | | Home office deduction | **Allowed** (if calculated per PA rules — generally follows federal) | |
| 115 | | Business expenses (Schedule C) | **Generally allowed** (ordinary and necessary business expenses are deductible) | |
| 116 | | Depreciation | **PA uses its own depreciation rules** — no bonus depreciation; PA follows federal MACRS but without §168(k) bonus | |
| 117 | | §179 expensing | **PA conforms to $25,000 limit** (not the federal $1,220,000+ limit). Excess must be depreciated under MACRS. | |
| 118 | | Net operating loss | **Not allowed** for individuals. Business losses cannot offset income from other classes, and PA does not allow NOL carryforward for individuals. | |
| 119 | |
| 120 | --- |
| 121 | |
| 122 | ## Section 4: Self-employed specific rules |
| 123 | |
| 124 | ### Net profits computation (Class 2) |
| 125 | |
| 126 | The PA net profits computation is on PA Schedule C (different from federal Schedule C). The starting point is gross receipts minus cost of goods sold, minus allowable business expenses under PA rules. |
| 127 | |
| 128 | **Key PA-specific disallowances:** |
| 129 | - **§179 limited to $25,000.** If the taxpayer claimed more than $25,000 in §179 on the federal return, the excess must be depreciated over the asset's life on the PA return. |
| 130 | - **No bonus depreciation.** PA does not conform to §168(k). Any bonus depreciation claimed federally must be added back, and regular MACRS depreciation substituted. |
| 131 | - **No NOL.** If net profits are negative, the loss stays within Class 2. It cannot reduce compensation (Class 1) or other income classes. PA does not allow individual NOL carryforward. |
| 132 | |
| 133 | ### Loss limitation (critical) |
| 134 | |
| 135 | **Pennsylvania does not allow losses in one class of income to offset income in another class.** If a sole proprietor has a $20,000 loss in net profits (Class 2) and $80,000 in compensation (Class 1), the taxpayer pays 3.07% on $80,000. The $20,000 loss is wasted — it cannot be carried forward. |
| 136 | |
| 137 | This is one of the most taxpayer-unfriendly provisions in the state tax landscape and catches many preparers off guard. |
| 138 | |
| 139 | ### Local earned income tax (warning) |
| 140 | |
| 141 | Pennsylvania's over 2,500 municipalities and school districts impose local earned income taxes (EIT), typically 1%–3.9% combined. Self-employed individuals must file local EIT returns in their resident jurisdiction. The largest local taxes are: |
| 142 | - **Philadelphia:** 3.75% wage tax (residents) / 3.44% net profits tax (verify 2025) |
| 143 | - **Chester City:** 3.75% |
| 144 | - **Reading:** 3.6% |
| 145 | |
| 146 | Local EIT is NOT covered by this skill but represents a significant additional tax burden. |
| 147 | |
| 148 | ### Reciprocal agreements |
| 149 | |
| 150 | Pennsylvania has reciprocal agreements with IN, MD, NJ, OH, VA, and WV. If the taxpayer works in one of these states, only Pennsylvania taxes the compensation. |
| 151 | |
| 152 | --- |
| 153 | |
| 154 | ## Section 5: Tier 1 rules — deterministic |
| 155 | |
| 156 | **R-PA-1. Flat rate of 3.07%.** All taxable income from all eight classes is taxed at 3.07%. No brackets, no graduated rates. |
| 157 | |
| 158 | **R-PA-2. No standard deduction and no personal exemptions.** PA does not provide any standard deduction or personal exemption. All income is taxed from dollar one (subject to tax forgiveness for low-income filers). |
| 159 | |
| 160 | **R-PA-3. §179 limited to $25,000.** If federal §179 exceeds $25,000, add back the excess on the PA return and depreciate over the asset's useful life. |
| 161 | |
| 162 | **R-PA-4. No bonus depreciation.** Add back all §168(k) bonus depreciation claimed on the federal return. Substitute regular MACRS depreciation on the PA return. |
| 163 | |
| 164 | **R-PA-5. No loss offsets between classes.** Business losses (Class 2) cannot offset compensation (Class 1) or any other class. |
| 165 | |
| 166 | **R-PA-6. Retirement income is fully exempt.** Pensions, 401(k) distributions, IRA distributions, and Social Security are all exempt from PA income tax when received. However, the contributions are NOT deductible when made (no above-the-line deduction for SEP/SIMPLE/solo 401(k) on PA return). |
| 167 | |
| 168 | **R-PA-7. Tax forgiveness for low-income filers.** Apply Schedule SP to determine if the taxpayer qualifies for partial or full forgiveness of PA income tax. |
| 169 | |
| 170 | --- |
| 171 | |
| 172 | ## Section 6: Tier 2 rules — requires judgment |
| 173 | |
| 174 | **J-PA-1. Business expense classification.** Because PA computes net profits using its own rules, judgment is needed to determine which federal Schedule C expenses are allowable under PA law. Most ordinary and necessary business expenses are allowed, but some items differ. |
| 175 | |
| 176 | **J-PA-2. Self-employed health insurance deductibility.** The federal above-the-line deduction for self-employed health insurance is NOT allowed on the PA return. However, if health insurance premiums are a legitimate business expense of the sole proprietorship (e.g., paid by the business), they may be deductible on PA Schedule C. The distinction requires judgment. |
| 177 | |
| 178 | **J-PA-3. Depreciation reconciliation.** When federal and PA depreciation differ (due to §179 and §168(k) differences), a depreciation schedule tracking PA basis vs. federal basis is required for all depreciable assets. |
| 179 | |
| 180 | **J-PA-4. Residency determination.** PA considers a person domiciled in PA as a resident. The statutory residency test (183+ days in PA) also applies. For taxpayers who moved, part-year resident rules apply. |
| 181 | |
| 182 | --- |
| 183 | |
| 184 | ## Section 7: Supplier pattern library |
| 185 | |
| 186 | | Pattern | Description | |
| 187 | |---|---| |
| 188 | | Heavy equipment purchaser | Large §179 claim federally. PA limits §179 to $25,000 — must add back excess and compute PA MACRS. Creates ongoing PA/federal depreciation tracking requirement. | |
| 189 | | Schedule C loss with W-2 income | PA does not allow Class 2 loss to offset Class 1 compensation. Taxpayer pays 3.07% on full W-2 income despite business loss. | |
| 190 | | SEP contributor | SEP contribution is not deductible on PA return. PA tax on the contribution amount now, but exempt when distributed in retirement. | |
| 191 | | Low-income freelancer | Check Schedule SP for tax forgiveness. Full forgiveness available if eligibility income is below threshold. | |
| 192 | | Philadelphia resident | Additional 3.75% city wage tax on all earned income (compensation + net profits). Massive additional burden. | |
| 193 | |
| 194 | --- |
| 195 | |
| 196 | ## Section 8: Form mapping |
| 197 | |
| 198 | | PA-40 line | Description | Source | |
| 199 | |---|---|---| |
| 200 | | Line 1a | Gross compensation | W-2 wages (if any) | |
| 201 | | Line 4 | Net income or loss from business (net profits) | PA Schedule C | |
| 202 | | Line 5 | Net gain or loss from rents/royalties | PA Schedule E equivalent | |
| 203 | | Line 6 | Interest income | 1099-INT | |
| 204 | | Line 7 | Dividend income | 1099-DIV | |
| 205 | | Line 8 | Income from estates/trusts | Schedule K-1 | |
| 206 | | Line 9 | Gambling/lottery winnings | W-2G | |
| 207 | | Line 10 | Gain on sale of property | PA Schedule D | |
| 208 | | Line 11 | Total PA taxable income | Sum of all eight classes | |
| 209 | | Line 12 | PA income tax (3.07%) | Line 11 × 0.0307 | |
| 210 | | Line 13 | Tax forgiveness credit | Schedule SP | |
| 211 | | Line 14 | PA income tax after forgiveness | Line 12 − Line 13 | |
| 212 | |
| 213 | --- |
| 214 | |
| 215 | ## Section 9: Refusal catalogue |
| 216 | |
| 217 | **REFUSE-PA-1.** REFUSE to prepare a PA return for a part-year resident or nonresident without determining the apportionment of each class of income to PA-source income. |
| 218 | |
| 219 | **REFUSE-PA-2.** REFUSE to allow losses in one class of income to offset income in another class. This is a hard rule — no exceptions. |
| 220 | |
| 221 | **REFUSE-PA-3.** REFUSE to apply federal §179 amounts above $25,000 on the PA return. The excess must be depreciated. |
| 222 | |
| 223 | **REFUSE-PA-4.** REFUSE to apply federal bonus depreciation on the PA return. PA does not conform to §168(k). |
| 224 | |
| 225 | **REFUSE-PA-5.** REFUSE to compute local earned income tax (EIT), Philadelphia wage/net profits tax, or school district taxes. These are separate filings with separate rules. |
| 226 | |
| 227 | **REFUSE-PA-6.** REFUSE to deduct SEP, SIMPLE, or solo 401(k) contributions on the PA return. PA does not allow these deductions (but exempts the distributions in retirement). |
| 228 | |
| 229 | --- |
| 230 | |
| 231 | ## Disclaimer |
| 232 | |
| 233 | This skill and its outputs are provided for informational and computational purposes only and do not constitute tax, legal, or financial advice. Open Accountants and its contributors accept no liability for any errors, omissions, or outcomes arising from the use of this skill. All outputs must be reviewed and signed off by a qualified professional (such as a CPA, EA, tax attorney, or equivalent licensed practitioner in your jurisdiction) before filing or acting upon. |
| 234 | |
| 235 | The most up-to-date, verified version of this skill is maintained at [openaccountants.com](https://openaccountants.com). Log in to access the latest version, request a professional review from a licensed accountant, and track updates as tax law changes. |
| 236 |
Run this skill, then get an accountant to check it
After running the full skill pack in your AI agent, sign up and upload your worksheet. We'll connect you with a trusted accountant in our network who can review your numbers before you file.
Quality
Q3: AI-drafted
AI-generated with structure and citations. Not independently verified.
Needs deep research against tax authority websites to reach Q2.
Accountant Review
About
Triggers when the taxpayer is a Pennsylvania resident sole proprietor or single-member LLC needing to file Pennsylvania Form PA-40. Covers Pennsylvania's flat 3.07% income tax on eight classes of income, the unique PA rules that disallow many federal deductions, net profits computation for self-employed, and interaction with local earned income taxes. Must be loaded alongside us-tax-workflow-base and us-federal-return-assembly.
Use this skill
This skill is open source and free to use in any AI agent. Copy it, download it, or clone the repo. If you find an error, flag it — a licensed accountant will review.