-
Notifications
You must be signed in to change notification settings - Fork 6
/
01-slides.Rmd
1303 lines (762 loc) Β· 23 KB
/
01-slides.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Introduction + defining and describing the nonprofit sector"
author: "Andrew Heiss"
date: "2022-08-25"
output:
xaringan::moon_reader:
lib_dir: "libs"
chakra: "libs/remark-latest.min.js"
css: ["default", "css/ath-slides.css", "css/ath-jost-fonts.css", "css/animate.css"]
seal: false
anchor_sections: false
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
ratio: "16:9"
navigation:
scroll: false
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE, message = FALSE,
fig.retina = 3, fig.align = "center")
```
```{r packages-data, include=FALSE}
library(countdown)
set.seed(1234)
```
```{r xaringanExtra, echo=FALSE}
xaringanExtra::use_xaringan_extra(c("tile_view"))
```
class: center middle main-title section-title-7
# Defining and describing<br>the nonprofit sector
.class-info[
**August 25, 2022**
.light[PMAP 3210: Introduction to Nonprofits<br>
Andrew Young School of Policy Studies
]
]
---
name: outline
class: title title-inv-5
# Plan for today
--
.box-1.sp-after-half[What are nonprofits?]
--
.box-5.sp-after-half[Why do we have a class<br>just for nonprofits?]
--
.box-3.sp-after-half[What are we doing this semester?]
--
.box-2.sp-after-half[The universe of nonprofits]
--
.box-6.sp-after-half[Problems with nonprofits]
---
layout: false
name: what-are-nonprofits
class: center middle section-title section-title-1 animated fadeIn
# What are<br>nonprofits?
---
layout: true
class: title title-1
---
# What are nonprofits?
.center[Typically, they are:]
--
.box-inv-1.medium[**Corporations**]
--
.box-inv-1.medium[with **Special Tax Status**]
--
.box-inv-1.medium[providing a **Public Good**]
???
We will discuss these three things
---
# They are ***not***β¦
--
.box-inv-1.medium[Prohibited from making a profit]
--
.box-inv-1.medium[Free from paying all taxes]
--
.box-inv-1[.medium[Legally accountable to donors]<br>.smaller[(except for breaking promises)]]
???
1. Nonprofits can operate at a profit, but they are not allowed to distribute the profit to shareholders.
2. Major misconception. Every nonprofit has to pay some sort of tax every year.
3. Other than for claims of fraud or, in few cases, contract, donors cannot sue nonprofits for mishandling, misusing, or wasting donated funds. Only the state attorney general can do that.
---
layout: false
.pull-left-3[
.box-1.SMALL[Corporation]
.box-inv-1.small[Legal entity]
.box-inv-1.small[Board managed]
.box-inv-1.small[No owners]
.box-inv-1.small[Organized<br>under state law]
]
--
.pull-middle-3[
.box-1.SMALL[Special tax status]
.box-inv-1.small[30+ categories of IRS tax exemption]
.box-inv-1.small[Different taxes apply differently (income, sales, property, employment, etc.)]
]
--
.pull-right-3[
.box-1.SMALL[Public good]
.box-inv-1.small[Health]
.box-inv-1.small[Arts]
.box-inv-1.small[Education]
.box-inv-1.small[Social service]
.box-inv-1.small[Civic]
.box-inv-1.small[Research]
.box-inv-1.small[Religious]
]
---
class: title title-1
# Find a nonprofit
Make a list of a few organizations you think are nonprofits
Look up a few to see if they are. What do they do? What public goods do they provide?
Hints: Look for things like "501(c)(3)", "tax exempt", or links to give donations
```{r echo=FALSE}
countdown(minutes = 4, play_sound = FALSE, font_size = "1.5em")
```
---
class: title title-1
# Find a nonprofit
Make a list of a few organizations you think are nonprofits
Look up a few to see if they are. What do they do? What public goods do they provide?
Hints: Look for things like "501(c)(3)", "tax exempt", or links to give donations
.color-2[**Share what you found with your neighbors**]
```{r echo=FALSE}
countdown(minutes = 4)
```
---
layout: true
class: middle center
---
<figure>
<img src="img/01/habitat-for-humanity.png" alt="Habitat for Humanity" title="Habitat for Humanity" width="100%">
</figure>
---
<figure>
<img src="img/01/red-cross.jpg" alt="Red Cross" title="Red Cross" width="100%">
</figure>
---
<figure>
<img src="img/01/carter-center.jpg" alt="The Carter Center" title="The Carter Center" width="50%">
</figure>
---
<figure>
<img src="img/01/irc.png" alt="International Rescue Committee (IRC)" title="International Rescue Committee (IRC)" width="40%">
</figure>
---
<figure>
<img src="img/01/high.png" alt="High Museum of Art" title="High Museum of Art" width="80%">
</figure>
---
<figure>
<img src="img/01/Georgia-Aquarium-logo.jpg" alt="Georgia Aquarium" title="Georgia Aquarium" width="80%">
</figure>
---
layout: false
class: middle section-title-inv-1 animated fadeIn
.box-1.huge[Pop quiz!]
???
Source: NCCS, October 2015.
Also via the inimitable Aaron Miller.
---
layout: true
class: section-title-inv-1
---
.medium.center[
In 2016, how many nonprofit organizations<br>were registered with the IRS?
- 65,252
- 589,587
- 1,571,056
]
---
.medium.center[
In 2016, how many nonprofit organizations<br>were registered with the IRS?
- 65,252
- 589,587
- .color-7[**1,571,056**]
]
--
.box-1.small[That's one nonprofit for every 214 Americans!]
---
.medium.center[
How many of these filed a<br>990 tax return with the IRS?
- 65,252
- 589,587
- 1,571,056
]
---
.medium.center[
How many of these filed a<br>990 tax return with the IRS?
- 65,252
- .color-7[**589,587**]
- 1,571,056
]
--
.box-1.small[Not all nonprofits need to do this!]
---
.medium.center[
What percent of the US gross domestic<br>product is attributed to nonprofits?
- 2.7%
- 5.3%
- 16.1%
]
---
.medium.center[
What percent of the US gross domestic<br>product is attributed to nonprofits?
- 2.7%
- .color-7[**5.3%**]
- 16.1%
]
???
About $905 billion.
Public Charities (1.1 million) collectively managed over $3 trillion in assets.
---
.medium.center[
Which of these is the largest<br>source of revenue for nonprofits?
- Private contributions and donations
- Earned income
- Government grants
]
---
.medium.center[
Which of these is the largest<br>source of revenue for nonprofits?
- Private contributions and donations
- .color-7[**Earned income**]
- Government grants
]
--
.box-1.small[72% from earned income!]
???
Fees from government sources (primarily Medicare and Medicaid) alone account for 24.5% of nonprofit revenue.
Private giving only accounts for 13% of nonprofit revenue.
---
layout: false
name: why-focus
class: center middle section-title section-title-5 animated fadeIn
# Why do we have a<br>class just for nonprofits?
---
class: middle
.box-5.medium.sp-after[Why not just learn about<br>businesses or governments?]
.box-5.medium[What makes nonprofits unique?]
---
class: middle
.box-5.medium.sp-after[Why not just learn about<br>business management?]
.box-5.medium[What makes nonprofit<br>management unique?]
???
mission v. profit, public trust, varied funding, fundraising, measuring performance, legal context, volunteers, governance, multiple programs & constituencies
---
layout: false
name: class-overview
class: center middle section-title section-title-3 animated fadeIn
# What are we doing<br>this semester?
---
layout: true
class: title title-3
---
# Who am I?
<figure>
<img src="img/01/family.jpg" alt="Family" title="Family" width="100%">
</figure>
---
# Who am I?
--
.pull-left-3[
<figure>
<img src="img/01/byu.png" alt="BYU" title="BYU" width="100%">
</figure>
]
--
.pull-middle-3[
<figure>
<img src="img/01/duke.png" alt="Sanford School of Public Policy at Duke" title="Sanford School of Public Policy at Duke" width="100%">
</figure>
]
--
.pull-right-3[
<figure>
<img src="img/01/lhi.jpg" alt="Lifting Hands International" title="Lifting Hands International" width="100%">
</figure>
]
---
# Superheroes
.center[
<figure>
<img src="img/01/thor.jpg" alt="Thor from Thor: Ragnarok" title="Thor from Thor: Ragnarok" width="80%">
</figure>
]
---
# Class goals
--
.box-inv-3.less-medium[Discover a deeper appreciation<br>for the nonprofit sector]
--
.box-inv-3.less-medium[Identify the core purposes of a nonprofit]
--
.box-inv-3.less-medium[Understand what makes nonprofits unique]
--
.box-inv-3.less-medium[Create a hypothetical nonprofit!]
---
# Class readings
.pull-left.center[
<figure>
<img src="img/01/grobman.jpg" alt="Gary Grobman, An Introduction to the Nonprofit Sector" title="Gary Grobman, An Introduction to the Nonprofit Sector" width="70%">
</figure>
]
.pull-right.small[
Gary M. Grobman, *An Introduction to the Nonprofit Sector: A Practical Approach for the Twenty-First Century*, .color-1[6th edition]
Other readings and videos
]
---
# Class website
.box-inv-3[β Schedule & assignments & most other content lives here β]
.box-inv-3[.color-5[**nonprofit**] .color-7[**f**] .color-6[**22**] .classes.andrewheiss.com]
.box-inv-3.smaller[https://nonprofitf22.classes.andrewheiss.com/]
.box-inv-3.small.sp-after[You'll have access to this site forever after the class is over]
--
.box-3.less-medium.sp-before[Turn stuff in at iCollege]
---
# Assignments
--
.box-inv-3.medium[Pre-class check-ins]
--
.box-inv-3.medium[Why nonprofits?]
--
.box-inv-3.medium[Team project]
--
.box-3.medium[No tests!]
---
layout: false
class: middle
.box-3.huge[Why teams?!<br>Teams are the worst.]
---
layout: true
class: title title-3
---
# Why teams?
--
.box-inv-3.less-medium[I'm not trying to be mean!]
--
.box-inv-3.less-medium[Nonprofit work is all about collaboration]
--
.box-inv-3.less-medium.sp-after[You cannot start or work in a<br>successful nonprofit without teamwork]
--
.box-3.less-medium[I'll give you tools to make teamwork suck less!]
---
# Pre-class check-ins
--
.box-inv-3[.medium[On iCollege under "Quizzes"]<br>.small[(but it's not really a quiz!)]]
--
.box-inv-3.medium[Tell me if you're in class +<br>tell me how prepared you are]
--
.box-inv-3.medium[Turn in a written response]
---
# Pandemic stuff
--
.box-inv-3.medium[If community transmission is<br>mediumβhigh, I'll wear a mask]
--
.box-inv-3[.medium[If you're sick, don't come to class!]<br>.small[(We'll figure out a way to get you caught up!)]]
--
.box-inv-3[.medium[Show grace and patience with each other] .small[(and with me!)]]
---
# I'm here to help!
.box-inv-3.medium[Student hours]
.box-inv-3.SMALL[E-mail, Calendly, Webex]
---
layout: false
name: universe-nonprofits
class: center middle section-title section-title-2 animated fadeIn
# The universe<br>of nonprofits
---
layout: true
class: title title-2
---
# What are nonprofits?
.center[Typically, they are:]
.box-inv-2.medium[**Corporations**]
.box-inv-2.medium[with **Special Tax Status**]
.box-inv-2.medium[providing a **Public Good**]
---
# Confusing names!
--
.box-inv-2.medium[These are all basically the same thing!]
--
.center[
.float-left[.box-2.small[Nonprofit organization (NPO)]]
.float-left[.box-2.small[Non-profit organization] .box-2.small[Not-for-profit organization]]
.box-2.small[Nongovernmental organization (NGO)]
.float-left[.box-2.small[501(c)(3)] .box-2.small[501(c)]]
.box-2.small[Third sector]
]
---
# Six characteristics of nonprofits
--
.box-inv-2[Formal organization]
--
.box-inv-2[Non-profit-seeking or distributing]
--
.box-inv-2[Private]
--
.box-inv-2[Self-governing]
--
.box-inv-2[Voluntary]
--
.box-inv-2[Operating for public or mutual benefit]
---
# Public or mutual benefit
.box-inv-2[Nonprofits don't always have to serve the public]
--
.pull-left[
.box-2[Public-serving]
.float-left.center[.box-inv-2.small[Charities] .box-inv-2.small[Foundations]]
.box-inv-2.small[Advocacy organizations]
.float-left.center[.box-inv-2.small[Education] .box-inv-2.small[Hospitals]]
.box-2.SMALL[Focused on the broader public]
]
--
.pull-right[
.box-2[Member-serving]
.box-inv-2.small[Fraternities and sororities]
.box-inv-2.small[Professional associations]
.float-left.center[.box-inv-2.small[Sports clubs] .box-inv-2.small[HOAs]]
.box-2.SMALL[Focused on their members]
]
---
# Nonprofits and taxes
.box-inv-2.large[Organizations that focus<br>on the public get<br>special tax privileges]
---
# Β§501(c)
.center[
<figure>
<img src="img/01/501c3.png" alt="501(c)(3) tax code" title="501(c)(3) tax code" width="80%">
</figure>
]
???
- https://www.law.cornell.edu/uscode/text/26/501
- https://www.govinfo.gov/content/pkg/USCODE-2011-title26/pdf/USCODE-2011-title26-subtitleA-chap1-subchapF-partI-sec501.pdf
---
# Β§501(c)
.center[
<figure>
<img src="img/01/501c32.png" alt="501(c)(3) tax code" title="501(c)(3) tax code" width="80%">
</figure>
]
---
# 501(c) categories you should know
.box-2[There are 29 different types in Β§501(c),<br>plus a bunch in Β§527!]
.box-2.smaller[Pages 69β70 in [IRS Publication 557](https://www.irs.gov/pub/irs-pdf/p557.pdf)]
.float-left.center[
.box-inv-2.less-medium[501(c)(3)] .box-inv-2.less-medium[501(c)(4)] .box-inv-2.less-medium[501(c)(6)] .box-inv-2.less-medium[527]
]
???
There are 29 different types!
See also https://www.charitynavigator.org/index.cfm?bay=content.view&cpid=1559
---
# 501(c)(3)
.box-inv-2[Nine official subsectors: [NTEE-CC](https://nccs.urban.org/project/national-taxonomy-exempt-entities-ntee-codes)]
.pull-left[
- Arts, Culture, and Humanities
- Education
- Environment and Animals
- Health
- Human Services
]
.pull-right[
- International, Foreign Affairs
- Public, Societal Benefit
- Religion Related
- Mutual/Membership Benefit
]
???
NTEE-CC codes: https://nccs.urban.org/project/national-taxonomy-exempt-entities-ntee-codes
---
# 501(c)(3)
--
.box-2[.medium[Charitable organizations]<br>.small[Most nonprofits you can think of]]
--
.box-inv-2[Organization is tax exempt]
--
.box-inv-2[Contributions are tax deductible<br>.small[Only category that allows this!]]
---
layout: true
class: middle section-title-inv-2
---
.box-2.huge[Why care about<br>tax deductions?]
---
.box-2.medium[**Jody earns $80,000/year**]
--
.pull-left[
```{r echo=FALSE}
# Substitute Geordi Drake Meme
# Geordi, with his finger pointed approvingly
tibble::tribble(
~`Annual income`, ~`Marginal tax rate`,
"$0β$10,000", "0%",
"$10,001β$50,000", "10%",
"$50,001β$100,000", "20%",
"$100,001β$300,000", "30%",
"$300,000+", "50%",
) |>
kableExtra::kbl() |>
kableExtra::kable_styling(font_size = 35)
```
]
--
.pull-right[
.box-2.smaller[She pays 0% on first $10,000<br>.small[($0)]]
.box-2.smaller[She pays 10% on the next $40,000<br>.small[($4,000)]]
.box-2.smaller[She pays 20% on the last $30,000<br>.small[($6,000)]]
.box-2[Total = $10,000]
]
---
layout: true
class: title title-2
---
# 501(c)(3)
.box-2[.medium[Charitable organizations]<br>.small[Most nonprofits you can think of]]
.box-inv-2[Organization is tax exempt]
.box-inv-2[Contributions are tax deductible<br>.small[Only category that allows this!]]
--
.box-inv-2[Insubstantial lobbying allowed<br>.small[But no participation in political campaigns]]
???
- LDS church during Prop 8 - counted as insubstantial lobbying
- Lobbying only for ideas, policies; political campaigns are for people
- BYU accidentally promoted Romney during his 2012 campaignβquickly redacted - you can't say anything about specific candidates
- Free speech not an issue - you don't have to be tax exempt - you give up some free speech in exchange for tax exemption
---
# 501(c)(4)
--
.box-2[.medium[Social welfare organizations]<br>.small[ACLU, NAACP, NRA, some political PACs]]
--
.box-inv-2[Organization is tax exempt]
--
.box-inv-2[Contributions are ***not*** deductible]
--
.box-inv-2[Political lobbying allowed<br>.small[(2010 Citizens United decision)]]
---
# 501(c)(6)
--
.box-2[.medium[Business leagues and trade associations]<br>.small[RIAA, chambers of commerce, the NFL]]
--
.box-inv-2[Organization is tax exempt]
--
.box-inv-2[Contributions are ***not*** deductible]
--
.box-inv-2[Political lobbying allowed]
---
# Β§527
--
.box-2[.medium[Political parties, campaigns, PACs]<br>.small[ActBlue, EMILY's List, Republican Governors Association, AFL-CIO]]
--
.box-inv-2[Organization is tax exempt ***only*** for "exempt activity"<br>.small[(Money spent on political activities and lobbying)]]
--
.box-inv-2[Contributions are ***not*** deductible]
--
.box-inv-2[Political lobbying is their whole purpose]
---
# Getting tax exemptions
--
.box-inv-2[Establishing a nonprofit corporation<br>does not automatically give you tax exemption!]
--
.box-2[Incorporate at the *state* level<br>through the state's Department of State]
--
.box-2[Apply to the IRS at the *federal* level to get tax-exempt status<br>using one of the 501(c) categories (most often 501(c)(3))]
---
# Nonprofits vs. foundations
.pull-left.center[
<figure>
<img src="img/01/care-logo.png" alt="CARE International logo" title="CARE International logo" width="40%">
</figure>
]
.pull-right.center[
<figure>
<img src="img/01/woodruff-logo.png" alt="Woodruff Foundation logo" title="Woodruff Foundation logo" width="100%">
</figure>
]
--
.box-inv-2[Both are 501(c)(3)s!]
.box-2[How are they different?]