-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path02-slides.Rmd
1122 lines (742 loc) · 21.3 KB
/
02-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: "History and theory of the nonprofit sector"
author: "Andrew Heiss"
date: "`r Sys.Date()`"
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)
```
```{r xaringanExtra, echo=FALSE}
xaringanExtra::use_xaringan_extra(c("tile_view"))
```
class: center middle main-title section-title-7
# History and theory<br>of the nonprofit sector
.class-info[
**September 1, 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-8.sp-after-half[.less-medium[Why do nonprofits even exist?] .small[(Theory part)]]
--
.box-3.sp-after-half[.less-medium[Why do nonprofits even exist?] .small[(History part)]]
--
.box-1.less-medium[How to make teamwork not suck]
--
.box-6.less-medium[Forming and norming]
--
.box-2.less-medium[Issue and cause selection]
---
layout: false
name: theory
class: center middle section-title section-title-8 animated fadeIn
# Why do<br>nonprofits even exist?<br>.smaller[(Theory part)]
---
layout: true
class: title title-8
---
# Public goods
--
.box-inv-8.medium[Non-excludable]
.box-8.small.sp-after[Not possible to stop others<br>from using the good or service]
--
.box-inv-8.medium[Non-rivalrous]
.box-8.small[One person using the good or service<br>doesn't prevent anyone else from using it]
---
# Types of goods
.center[
<table>
<tr>
<th></th>
<th>Excludable</th>
<th> Not excludable </th>
</tr>
<tr>
<td><b>Rival</b></td>
<td> <br> </td>
<td> <br> </td>
</tr>
<tr>
<td><b>Not rival</b></td>
<td> <br> </td>
<td> <br> </td>
</tr>
</table>
]
---
# Types of goods
.center[
<table>
<tr>
<th></th>
<th>Excludable</th>
<th> Not excludable </th>
</tr>
<tr>
<td><b>Rival</b></td>
<td>Private<br>goods</td>
<td> <br> </td>
</tr>
<tr>
<td><b>Not rival</b></td>
<td> <br> </td>
<td> <br> </td>
</tr>
</table>
]
---
# Types of goods
.center[
<table>
<tr>
<th></th>
<th>Excludable</th>
<th> Not excludable </th>
</tr>
<tr>
<td><b>Rival</b></td>
<td>Private<br>goods</td>
<td> <br> </td>
</tr>
<tr>
<td><b>Not rival</b></td>
<td>Club<br>goods</td>
<td> <br> </td>
</tr>
</table>
]
---
# Types of goods
.center[
<table>
<tr>
<th></th>
<th>Excludable</th>
<th> Not excludable </th>
</tr>
<tr>
<td><b>Rival</b></td>
<td>Private<br>goods</td>
<td>Common pool<br>resources</td>
</tr>
<tr>
<td><b>Not rival</b></td>
<td>Club<br>goods</td>
<td> <br> </td>
</tr>
</table>
]
---
# Types of goods
.center[
<table>
<tr>
<th></th>
<th>Excludable</th>
<th> Not excludable </th>
</tr>
<tr>
<td><b>Rival</b></td>
<td>Private<br>goods</td>
<td>Common pool<br>resources</td>
</tr>
<tr>
<td><b>Not rival</b></td>
<td>Club<br>goods</td>
<td>Public<br>goods</td>
</tr>
</table>
]
---
layout: false
class: section-title-inv-8
# Rivalry and excludability
.box-8[A free public lecture at a university]
.box-8[Noise produced by aircraft around an airport]
.box-8[A forest used by the community to collect firewood]
.float-left.center[.box-8[*Hamilton* tickets] .box-8[A public park]]
.box-8[Bird/Lime/Uber scooters]
---
layout: true
class: title title-8
---
# Government failure
--
.box-inv-8.less-medium[The government doesn't provide<br>public goods or services like it should]
--
.box-8.medium.sp-after[Nonprofits can fill those gaps]
--
.box-8.small[How to recognize if a nonprofit is fixing this:<br>ask "could the government do that instead?"]
.box-8.small[Examples?]
---
# Market failure
--
.box-inv-8.less-medium[The private sector doesn't provide<br>goods or services because there's no incentive]
--
.box-8.medium.sp-after[Nonprofits can fill those gaps]
--
.box-8.small[How to recognize if a nonprofit is fixing this:<br>ask "Could/should the private sector do that instead? Why aren't they?"]
.box-8.small[Examples?]
---
# Transaction costs
--
.box-inv-8.less-medium[Fixing public goods issues is expensive!]
.box-inv-8.small[Time, effort, money, resources]
.smaller[ ]
--
.box-8[Nonprofits can work more quickly and have<br>more connections to communities, making it<br>easier and cheaper to provide services]
???
A nonprofit providing a forum for communicating in that game - private sector won't do it
---
# Externalities
--
.box-inv-8.less-medium[A cost or benefit to someone who<br>did not choose that cost or benefit]
--
.float-left.center[.box-inv-8.small[Pollution] .box-inv-8.small[Vaccinations] .box-inv-8.small[Cell phones and driving]]
--
.float-left.center[.box-inv-8.small[Internet bandwidth] .box-inv-8.small[Research] .box-inv-8.small[Education]]
--
.box-8.sp-before[Nonprofits can help mitigate negative ones<br>and promote positive ones]
---
# Contract failure
--
.box-inv-8[Principal-agent theory + information asymmetry]
--
.box-inv-8.small[Good or service too complex for consumer to understand]
--
.box-inv-8.small[Consumer not competent to understand]
--
.box-inv-8.small.sp-after[Purchaser not ultimate consumer]
--
.box-8[Nonprofits have inherent trust, or "halo" effect;<br>no assumption that organization<br>is trying to exploit the consumer]
???
- Too complex: Healthcare, higher education
- Not competent: Dementia patients
- Purchaser not ultimate consumer: Assisted living center
---
# Pluralistic theory
--
.box-inv-8.sp-after[Even if government is competent and can<br>provide public goods, nonprofits are seen as<br>less bureaucratic and more responsive]
--
.box-8[Nonprofits…]
--
.box-8.small[…encourage individual action for the public good]
--
.box-8.small[…create stronger societies]
--
.box-8.small[…respond better to the needs of diverse societies]
---
layout: false
class: middle section-title-inv-8
.box-8.medium[In small groups, think of<br>two different nonprofits]
---
class: section-title-inv-8
.box-8.small[Why do these organizations exist?]
.box-8.small[What are the differences and similarities of these organizations?]
.box-8.small[What need do these organizations fill?<br>Government failure? Market failure? Something else?]
.box-8.small[Would the work be more efficient if done by the government or<br>private companies? Or are nonprofits the best route?]
.box-8.small[Do people trust these nonprofits? Can they reach out to diverse groups<br>better or worse than the government or private companies?]
.box-8.small[What would happen if the nonprofit failed?]
---
layout: false
name: history
class: center middle section-title section-title-3 animated fadeIn
# Why do<br>nonprofits even exist?<br>.smaller[(History part)]
---
layout: true
class: title title-3
---
# Six characteristics of nonprofits
.box-inv-3[Formal organization]
.box-inv-3[Non-profit-distributing]
.box-inv-3[Private]
.box-inv-3[Self-governing]
.box-inv-3[Voluntary]
.box-inv-3[Operating for public benefit]
---
# British Colonies
.box-inv-3[1601 Elizabethan Statute of Charitable Uses]
.center[
<figure>
<img src="img/02/statute.png" alt="Elizabethan Statute of Charitable Uses" title="Elizabethan Statute of Charitable Uses" width="80%">
</figure>
]
???
<https://www.cambridge.org/core/books/abs/history-of-the-law-of-charity-15321827/charitable-uses-act-1601-43-elizabeth-i-c-4/666B786DC8A8242B0BCBACF708EE7C18>
---
# British Colonies
.box-inv-3[1601 Elizabethan Statute of Charitable Uses]
.center[
<figure>
<img src="img/02/statute-highlighted.png" alt="Elizabethan Statute of Charitable Uses" title="Elizabethan Statute of Charitable Uses" width="80%">
</figure>
]
---
# British Colonies
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Mostly in churches</b></td>
</tr>
<tr>
<td>Private</td>
<td><b>Government control</b></td>
</tr>
<tr>
<td>Income sources</td>
<td><b>Mostly tax supported</b></td>
</tr>
<tr>
<td>Self-governing</td>
<td><b>Government control</b></td>
</tr>
<tr>
<td>Voluntary</td>
<td><b>Yes</b></td>
</tr>
<tr>
<td>Public benefit</td>
<td><b>Poverty and education</b></td>
</tr>
</table>
]
---
# New Republic (1787+)
.box-inv-3.sp-after[Two big changes]
--
.box-3[Separation of church and state]
--
.box-3.sp-after[First amendment right of association]
--
.box-inv-3[Dartmouth v. Woodward (1819)]
???
Supreme Court's first great civil liberties case - issue of government control of nonpublic sector - Dartmouth chartered by NH state government - board expanded, NH wanted to appoint the trustees - but, this conflicted with some donor stipulation that said the board would stay the same size - Daniel Webster argued for Dartmouth (brought the audience to tears) - SC told state government to step out of the way—it didn't have ownership or control over nonprofits like Dartmouth
---
# New Republic (1787+)
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Corporations</b></td>
</tr>
<tr>
<td>Private</td>
<td><b>Arbitrary state charter</b></td>
</tr>
<tr>
<td>Income sources</td>
<td><b>Private sponsorship</b></td>
</tr>
<tr>
<td>Self-governing</td>
<td><b>Boards</b></td>
</tr>
<tr>
<td>Voluntary</td>
<td>Yes</td>
</tr>
<tr>
<td>Public benefit</td>
<td><b>Poverty and education</b></td>
</tr>
</table>
]
---
# 19th Century
.pull-left.center[
<figure>
<img src="img/02/james-smithson.jpg" alt="James Smithson" title="James Smithson" width="70%">
<figcaption>James Smithson</figcaption>
</figure>
]
.pull-right[
.box-inv-3["Charitable purposes"<br>expanded to include<br>arts and museum]
]
???
On his death, Smithson's will left his fortune to his nephew, son of his half-brother, but stipulated that if that nephew died without children (legitimate or illegitimate), the money should go "to the United States of America” to found at Washington, an establishment for the increase and diffusion of knowledge among men"
<https://www.si.edu/about/history>
---
# 19th Century
.pull-left.center[
<figure>
<img src="img/02/de-tocqueville.jpg" alt="Alexis de Tocqueville" title="Alexis de Tocqueville" width="65%">
<figcaption>Alexis de Tocqueville</figcaption>
</figure>
]
.pull-right[
.box-inv-3.float-left.SMALL["I have seen Americans make great and real sacrifices to the public welfare and have noticed a hundred instances in which they hardly ever failed to lend faithful support to one another."]
]
???
<https://en.wikipedia.org/wiki/Alexis_de_Tocqueville#/media/File:Alexis_de_Tocqueville_(Th%C3%A9odore_Chass%C3%A9riau_-_Versailles).jpg>
---
# 19th Century
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Religious resurgence</b></td>
</tr>
<tr>
<td>Private</td>
<td>Arbitrary state charter</td>
</tr>
<tr>
<td>Income sources</td>
<td><b>Donations and earned income</b></td>
</tr>
<tr>
<td>Self-governing</td>
<td>Boards</td>
</tr>
<tr>
<td>Voluntary</td>
<td>Yes</td>
</tr>
<tr>
<td>Public benefit</td>
<td><b>Add arts and museums</b></td>
</tr>
</table>
]
---
# 1900–1960
.box-inv-3.sp-after[Two big changes]
--
.box-3[16th amendment (ratified 1913) creates a federal income tax]
--
.float-left.center[.box-inv-3.small[Tax exemption for nonprofits (1913)] .box-inv-3.small.sp-after[Tax deduction for donations (1917)]]
.small[ ]
--
.box-3[Definition expanded to include science and research]
---
# 1900–1960
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Corporations and trusts</b></td>
</tr>
<tr>
<td>Private</td>
<td><b>Broad state charter</b></td>
</tr>
<tr>
<td>Income sources</td>
<td>Donations and earned income</td>
</tr>
<tr>
<td>Self-governing</td>
<td>Boards</td>
</tr>
<tr>
<td>Voluntary</td>
<td>Yes</td>
</tr>
<tr>
<td>Public benefit</td>
<td><b>Add scientific research</b></td>
</tr>
</table>
]
---
# 1960–2000
--
.pull-left-3[
.box-inv-3[War on<br>Poverty]
<figure>
<img src="img/02/poverty.jpg" alt="LBJ and the war on poverty" title="LBJ and the war on poverty" width="100%">
</figure>
.box-3.small[Increased<br>federal funding]
]
--
.pull-middle-3[
.box-inv-3[Neoliberal<br>privatization]
<figure>
<img src="img/02/reagan.jpg" alt="Ronald Reagan" title="Ronald Reagan" width="100%">
</figure>
.box-3.small[Explosive growth &<br>professionalization]
]
--
.pull-right-3[
.box-inv-3[Rise in<br>secularization]
<figure>
<img src="img/02/secular.png" alt="Secular nonprofits" title="Secular nonprofits" width="100%">
</figure>
.box-3.small[Increase in non-religious nonprofits]
]
???
<https://www.washingtonpost.com/news/wonk/wp/2014/01/08/everything-you-need-to-know-about-the-war-on-poverty/>
<https://en.wikipedia.org/wiki/File:President_Ronald_Reagan_addresses_the_nation_from_the_Oval_Office_on_tax_reduction_legislation.jpg>
---
# 1960–2000
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Corporations</b></td>
</tr>
<tr>
<td>Private</td>
<td><b>Simple charter</b></td>
</tr>
<tr>
<td>Income sources</td>
<td><b>Mostly earned income</b></td>
</tr>
<tr>
<td>Self-governing</td>
<td>Boards</td>
</tr>
<tr>
<td>Voluntary</td>
<td>Yes</td>
</tr>
<tr>
<td>Public benefit</td>
<td><b>IRS categories</b></td>
</tr>
</table>
]
---
# 2000–today
.box-inv-3.less-medium[Social entrepreneurship and sector blending]
.center[
<figure>
<img src="img/02/b-corps.png" alt="B Corps" title="B Corps" width="70%">
</figure>
]
???
<https://usca.bcorporation.net/>
---
# 2000–today
.center[
<table class="cell-left">
<tr>
<td>Formal organization </td>
<td><b>Sector blending</b></td>
</tr>
<tr>
<td>Private</td>
<td>Simple charter</td>
</tr>
<tr>
<td>Income sources</td>
<td>Mostly earned income</td>
</tr>
<tr>
<td>Self-governing</td>
<td>Boards</td>
</tr>
<tr>
<td>Voluntary</td>
<td>Yes</td>
</tr>
<tr>
<td>Public benefit</td>
<td>IRS categories</td>
</tr>
</table>
]
---
layout: false
class: section-title-inv-3
# Questions
.box-3.SMALL[Are the roles of nonprofits and government properly balanced?]
.box-3.SMALL[What does the religious history of nonprofits mean to us today?]
.box-3.SMALL[Why is the corporation so important to nonprofit history?]
.box-3.SMALL[Should "charitable purpose" be broader or narrower?]
.box-3.SMALL[Why do we feel a need to treat nonprofit money differently?]
---
layout: false
name: teams-not-suck
class: center middle section-title section-title-1 animated fadeIn
# How to make<br>teamwork not suck
---
layout: true
class: title title-1
---
# Teams are everywhere!
--
.box-inv-1[There's a whole world of scholars<br>who study what makes teams effective]
.box-1.small.sp-after[(Organizational behavior)]
--
.box-inv-1[Teams generally increase<br>productivity, quality, and morale]
.box-inv-1[They're a good thing!]
???
Teams are everywhere!
517 - Teams generally increase productivity, quality, and morale, but often managers see this success and order immediate adoption of work teams without any preparation—leads to failure, creates inefficient teams
---
# Few do them right
.box-inv-1.SMALL[Often, managers (and professors) see the success of teams<br>and make their employees (or students) adopt them<br>***without any preparation***]
--
.box-1.medium[This is bad!]
--
.box-inv-1[Trying to work in a team without any preparation<br>leads to failure and inefficiencies]
--
.box-inv-1[Teams can create public good deficiencies!]
---
layout: false
class: middle
.box-1.large[We're going to <br>do teams right]
---
layout: true
class: title title-1
---
# Stages of the team lifecycle
--
.box-inv-1.medium[Forming]
--
.box-inv-1.medium[Norming]
--
.box-inv-1.medium[Storming]
--
.box-inv-1.medium[Performing]
---
# Forming
--
.pull-left[
.box-inv-1.SMALL[Members aren't a team;<br>just individuals]
.box-inv-1.SMALL[Lots of uncertainty<br>about everything]
.box-inv-1.SMALL[Silence, self-consciousness, dependence, and superficiality reign supreme]
]
--
.pull-right[
.box-1.SMALL[Figure out the details<br>of the task or project]
.box-1.SMALL[Get questions answered]
.box-1.SMALL[Establish trust and<br>build relationships]
.box-1.SMALL[Establish clarity of purpose,<br>procedures, and expectations]
]
???
*Developing Management Skills: Chapter 9, Teams (part 1)* (from BYU MPA OB class)
At first team members aren't a team, but an aggregation of individuals sharing a common setting - there's uncertainty as to what is going to happen, what is expected, who everyone is, who will lead. No shared history, no unity
Silence, self consciousness, dependence, and superficiality reign supreme
In this stage, in order to overcome all that, a team must:
* Orient members and get questions answered
* Establish trust
* Establish relationships with the leaders
* Establish clarity of purpose, norms, procedures, and expectations
Not a time to rely on free and open discussion and consensus decision making - direction, clarity, and structure are needed
---
# Norming
--
.box-1.medium[Start building a team culture]
--
.box-inv-1.SMALL[Codify norms and expectations in a written charter]
--
.box-inv-1.SMALL[Start conforming to standards and expectations]
--
.box-inv-1.SMALL[Maintain unity and cohesion]
--
.box-inv-1.SMALL[Facilitate participation and empowerment]
--
.box-inv-1.SMALL[Show support to team members]
???
Create team culture, a sense of team - members start to work together, conforming to expectations of other team members, creating team character
522 - Team members work to fit in, support each other, get along
Members begin to value team opinion and goals over personal feelings of cooperativeness
Conformity to standards and expectations, ignoring disagreements
A team must:
* Maintain unity and cohesion
* Facilitate participation and empowerment
* Show support to team members
* Provide feedback on team and member performance