First of all, that's a homework question, and I will try to make it as useful to future readers as possible.
Problem
So, I was given a problem about the model described by Botond Kőszegi and Matthew Rabin in "A Model of Reference-Dependent Preference" in 2006:
A person deals with two goods: tea ($c_1 \in \{0, 1\}$), and money ($c_2 \in R$). $$ c_1 = \begin{cases}1, \mbox{if he buys tea}\\ 0, \mbox{if he does not buy tea} \end{cases} $$ His consumption utility is given by: $$m(c) = v \times c_1 + c_2$$ His gain-loss utility is given by: $$ n(x | r) = \begin{cases} (x - r), \mbox{if } x \ge r\\ \lambda \times (x - r), \mbox{if } x \lt r \end{cases} $$ Tea costs $P_H = 30$; also, let $v = 13, \lambda = 4$.
There are multiple tasks, but I'm struggling even with the first one:
Prove that the reference point $r = (c_1, c_2) = (1, -30)$ with probability 1 is his personal equilibrium.
Do not forget that in the gain-loss utility in case of deviation from expectations, the lost utility should be considered - as it looks in the consumption utility.
Confusion 1: What does the second sentence even mean and how do I consider the lost utility??
My attempt
First of all, let's define what we're looking for. According to page 1143 of the paper:
A selection $\{F_l \in D_l\}_{l \in R}$ is a personal equilibrium (PE) if for all $l \in R$ and $F'_l \in D_l$ $U(F_l | \int F_l dQ(l)) \ge U(F'_l | \int F_l dQ(l))$.
So, provided that the probability is 1, I can get rid of the integrals and prove that $U(r | r) \ge U(x | r) \forall x \ne r$, or, given that there are only two possible choices (right?), that $U((1, -30) | (1, -30)) \ge U((0, 0) | (1, -30))$.
Confusion 2: does he really have only two choices and is the second choice $(0, 0)$?
Next, compute $U(r | r)$. As per p. 1138 of the same work:
We assume that overall utility has two components: $u(c|r) = m(c) + n(c|r)$, where $m(c)$ is "consumption utility" typically stressed in economics, and $n(c|r)$ is "gain-loss utility."
$$ U(r | r) = U((1, -30) | (1, -30)) = m(1, -30) + n((1, -30) | (1, -30)) $$
As per the same page:
We also assume that gain-loss utility is separable: $n(c|r) = \sum_{k=1}^K n_k(c_k | r_k)$.
So I can do:
$$ m(1, -30) = v \times 1 - 30 = 13 - 30 = -17\\ n((1, -30) | (1, -30)) = n(1 | 1) + n(-30 | -30) = (1 - 1) + (-30 + 30) = 0\\ \mbox{Thus, } U(r | r) = -17 + 0 = -17 $$
Now for the second option:
$$ U((0, 0) | (1, -30)) = m(0, 0) + n((0, 0) | (1, -30)) = 0 + n(0 | 1) + n(0 | -30) = \lambda \times (0 - 1) + (0 + 30) = 30 - \lambda = 30 - 4 = 26\\ \mbox{Thus, } U(x | r) = 0 + 26 = 26 $$
Confusion 3: So, I got $U(r | r) \lt U(x | r)$, which is quite the opposite of what I need to prove...
UPDATE
I'm being told by a fellow student that one should multiply the second part of the gain-loss utility by $v$ (!) to get:
$$ n(x | r) = \begin{cases} (x - r), \mbox{if } x \ge r\\ v \times \lambda \times (x - r), \mbox{if } x \lt r \end{cases} $$
So that the computation of $U(x | r)$ I get:
$$ U((0, 0) | (1, -30)) = \lambda \times v \times (0 - 1) + (0 + 30) = -22 $$
...and the same for $U((1, -30) | (1, -30))$.
They also say that this is what the "Do not forget that in the gain-loss utility in case of deviation from expectations, the lost utility should be considered - as it looks in the consumption utility." part of the task tells me to do. Unfortunately, I still have no idea what this part means or why I should multiply only the second part of the function by exactly $v$. I mean, why would you just change the function out of nowhere?
Question
Where am I wrong? And why do I need to multiply by $v$, and do I actually need to do this?
vhere: this is stated in the answers to the assignment. Why this is the case, though, remains a mystery. – ForceBru Dec 11 '18 at 21:09