[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Greed > Humanity

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 4
Thread images: 1

File: yaught.jpg (239KB, 2000x750px) Image search: [Google]
yaught.jpg
239KB, 2000x750px
How much would you save under the Trump tax plan? How much more would you save if you moved to a state with no income tax?

http://www.npr.org/2017/02/28/517523714/what-we-know-about-the-trump-house-gop-tax-plans-so-far

http://www.savetaxesbymoving.com/tax-calculator-results
>>
# python tax calculator
import sys

dollars = [0, 9275, 37650, 91150, 190150, 413350, 415050, None]
rates = [0.1, 0.15, 0.25, 0.28, 0.33, 0.35, 0.396]
ranges = []
for idx in range(len(dollars)-1):
ranges.append((dollars[idx], dollars[idx+1]))

trump_dollars = [0, 15000, 52000, 127500, None]
trump_rates = [0, 0.12, 0.25, 0.33]
trump_ranges = []
for idx in range(len(trump_dollars)-1):
trump_ranges.append((trump_dollars[idx], trump_dollars[idx+1]))

gop_dollars = [0, 12000, 49650, 202150, None]
gop_rates = [0, 0.12, 0.25, 0.33]
gop_ranges = []
for idx in range(len(gop_dollars)-1):
gop_ranges.append((gop_dollars[idx], gop_dollars[idx+1]))

def calc(salary, ranges, rates):
taxes = 0
for rng, rate in zip(ranges, rates):
low = rng[0]
high = rng[1]
if high is None:
high = salary
if salary < low:
break
elif salary >= high:
taxes += (high - low) * rate
elif salary < high:
taxes += (salary - low) * rate

print 'Taxes:', taxes
print 'Rate:', taxes / salary
return taxes

def main():
if len(sys.argv) < 2:
print 'USAGE: python %s salary' % sys.argv[0]
sys.exit(1)

salary = int(sys.argv[1])

print 'Salary:', salary
print

print 'Current:'
base = calc(salary, ranges, rates)
print

print 'Trump:'
trump = calc(salary, trump_ranges, trump_rates)
print 'Savings:', base - trump
print

print 'GOP:'
gop = calc(salary, gop_ranges, gop_rates)
print 'Savings:', base - gop

if __name__ == '__main__':
main()
>>
>>1826806

I'd end up paying more.

Trump can go suck a dick
>>
>4chan can't indent

http://pastebin.com/NYXR5rE3

125k a year in MD

5346.75 saved on federal
7946 saved on state
13,292.75 total
Thread posts: 4
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.