Chapter 17 Exercises
Section 17.1–17.2: Theory Review
Exercise 17.1 — Concept Application Lewis Hyde distinguishes between the commodity economy and the gift economy. For each of the following scenarios, identify which economy is operating, and explain your reasoning:
a) Vesper_of_Tuesday posts a 40,000-word fan fiction story to AO3 for free. b) A fan artist sells prints of their original work (not fan art) at a convention. c) A fan artist sells prints of their fan art at a convention. d) A fan writes a birthday story specifically for another fan in their Discord server. e) A Patreon supporter pays $5/month to a fan creator in exchange for early access to new works.
For case (e): is this a commodity exchange or a gift exchange? What details of the framing would push it toward one or the other?
Exercise 17.2 — Mauss's Three Obligations For each of the following, identify which Maussian obligation (to give, to receive, to reciprocate) is being performed, violated, or renegotiated:
a) A prolific AO3 author posts a note saying "I need a hiatus; please don't ask when I'm updating." b) A reader finishes a 200,000-word fan fiction epic and leaves no kudos and no comment. c) A fan who has been reading in a community for two years decides to write their first story. d) A fan community runs a gift exchange event (like Yuletide) where participants are matched as both givers and receivers. e) A fan artist receives a request for a "gift fic" from a prominent community member and feels unable to refuse.
Section 17.3–17.4: Gift Norms and Platform Capitalism
Exercise 17.3 — The Not-For-Profit Norm The "not for profit" norm in fan communities operates even in contexts where monetization would be legally permissible. Write a 400-word analysis arguing one of the following positions:
Option A: The not-for-profit norm is a genuine expression of gift-economy values and should be respected even as platforms monetize the content. Option B: The not-for-profit norm is an ideological mystification that prevents fan creators from receiving fair compensation for their labor. Option C: The not-for-profit norm is internally coherent within the gift economy but needs to be renegotiated in light of platform capitalism's extraction.
Your analysis should engage directly with Terranova's concept of free labor and with at least one of the running examples from this chapter.
Exercise 17.4 — Platform Comparison Research the business models of three fan fiction platforms: AO3, Wattpad, and one other platform of your choice (options include: FanFiction.net, Quotev, Inkitt, or Royal Road).
For each platform, answer: 1. Who owns it and how is it funded? 2. Who benefits financially from the content creators' work? 3. How does its business model interact with the gift economy norms of its community? 4. Which of Terranova's "free labor" is most extracted on this platform?
Present your findings in a comparison table, then write a 300-word evaluation of which platform most respects the gift economy ethics.
Section 17.5: Quantitative Analysis
Exercise 17.5 — Gini Coefficient Intuition The following kudos distributions are from three hypothetical fan fiction communities (listed as kudos counts for 10 works each):
Community A: [5, 5, 5, 5, 5, 5, 5, 5, 5, 5] Community B: [1, 2, 3, 5, 8, 13, 21, 34, 55, 89] Community C: [1, 1, 1, 1, 1, 1, 1, 1, 1, 100]
a) Without calculating, rank these communities from lowest to highest Gini coefficient. b) Now use the formula from Section 17.5 to calculate the Gini coefficient for each community. c) What does the Gini coefficient for Community B tell you about the relationship between the top creator and the rest of the community? d) Which community most resembles the actual AO3 distribution described in the chapter? Explain.
Exercise 17.6 — Reciprocity Index A small fan art community has the following gift relationships (arrows represent gift giving, numbers represent gift weight):
- Fan A gives to Fan B: weight 30
- Fan B gives to Fan A: weight 10
- Fan A gives to Fan C: weight 25
- Fan C gives to Fan A: weight 0
- Fan B gives to Fan C: weight 15
- Fan C gives to Fan B: weight 20
a) Calculate the Reciprocity Index for this community using the formula in Section 17.5.
b) Who is the net giver in this community? Who is the net receiver?
c) If Fan C is a prominent creator who mostly receives gifts, what does Mauss's theory predict about the community's long-term dynamics?
d) Using the code in gift_economy_model.py, extend the simulation to include a version of this small community and compare your hand-calculated results to the model's output.
Section 17.6–17.7: Ethics and Failures
Exercise 17.7 — Case Analysis: Burnout Vesper_of_Tuesday takes a three-month hiatus after completing a major multi-chapter work. During this hiatus, several things happen in her community:
- Some fans post supportive messages ("take all the time you need!")
- Some fans post impatient messages ("please update soon, I'm dying without this story")
- A new fan asks in the Discord: "Does Vesper still write? She hasn't posted in months."
- Another author begins a story that clearly fills the gap Vesper's hiatus has left.
For each response, analyze: Which Maussian obligation is being expressed? Is it being honored or violated? What does it reveal about the gift economy dynamics of the community?
Then write a 300-word reflection on what this scenario reveals about the structural vulnerability of gift economies that depend on high-output individual creators.
Exercise 17.8 — Ethical Analysis The chapter presents two arguments about whether fan gift economies are exploitative: the "exploitation" argument and the "liberation" argument.
Write a 500-word essay that takes a clear position on one of the following questions:
a) Should AO3's model (nonprofit, fan-governed) be the required standard for any platform that hosts fan creative work? What would the implications be? b) Is it ethical for media corporations (like Marvel or HYBE) to benefit from fan gift economies without compensating the fan creators? If not, what form should compensation take? c) Does the distinction between gift economy and commodity economy ultimately hold up, or do all gift economies eventually collapse into markets? Use at least two examples from the chapter.
Coding Exercise
Exercise 17.9 — Running the Gift Economy Model
Run both Python scripts in the code/ directory for this chapter.
For gift_economy_model.py:
1. Modify the generate_fan_community() function to create a community of 1,000 members instead of 500. How do the Gini coefficient and Pareto percentages change?
2. Change the burnout_threshold from 0.80 to 0.60. How does this affect Vesper's output and the community's total gift velocity?
3. Add a second named creator ("GrayWarden_Echo") who also experiences burnout, but with half the capacity of Vesper. How does dual burnout affect the community?
For fan_exchange_analysis.py:
1. Run the network analysis and examine the betweenness centrality values. Which named fan has the highest betweenness? What does this tell you about their role in gift circulation?
2. Modify the script to add a "HYBE_PLATFORM" node that receives gifts from Mireille_Fontaine and TheresaK (representing their fan labor that benefits HYBE). Compare the platform contributions to the AO3 platform contributions.
3. Write a 200-word interpretation of what the Vesper ego-network visualization tells you about her structural role in the gift community.