-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdf_content.txt
More file actions
1045 lines (1027 loc) · 61.8 KB
/
Copy pathpdf_content.txt
File metadata and controls
1045 lines (1027 loc) · 61.8 KB
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
Designing a Compelling Relationship Pattern
Diagnostic Quiz
Introduction
Designing a relationship pattern diagnostic quiz requires blending psychological depth with engaging
storytelling. Unlike a light-hearted personality or dating quiz, this tool functions more like a mini
therapeutic assessment – guiding users through introspection to uncover recurring dynamics in their love
lives. The target audience is introspective, emotionally literate women already attuned to their
relationship patterns. To captivate and resonate with them, the quiz must employ smart question design,
progressive disclosure, and emotional engagement strategies. Ultimately, it should deliver a coherent
psychological “aha” in the results – naming their vulnerability patterns, mapping how these unfold across
relationship phases, and explaining any contradictions in their behavior – all while using identity-safe, non-
judgmental language. Below, we break down the key frameworks and strategies for achieving this, from
question flow to narrative construction, culminating in a paywall hook that leverages the Zeigarnik effect
and loss aversion to spur completion.
Psychological Frameworks for Relationship Patterns
A strong diagnostic quiz draws on established psychological and therapeutic frameworks to lend it
credibility and depth. These frameworks illuminate how early experiences and core beliefs shape adult
relationship behaviors:
Schema Therapy (Core Beliefs): Schema therapy identifies deeply rooted beliefs (schemas) formed
in childhood that drive unhealthy patterns in adulthood
. For example, a person with an
Abandonment schema might chronically fear rejection, while someone with a Mistrust schema
expects betrayal
. Such schemas can explain why someone keeps replaying painful dynamics
(e.g. clinging to partners or pushing them away) – these patterns are not personal flaws but learned
survival strategies
. A quiz can include statements to surface these beliefs (e.g. “I worry the
people I love will leave me” for abandonment, or “I have trouble trusting my partner’s intentions” for
mistrust) and later report back how those beliefs create self-fulfilling prophecies in relationships. As
the Bay Area CBT Center’s schema quiz reassures: “These aren’t personality flaws. They’re often
symptoms of underlying schemas—deep beliefs formed in early life that tell you who you are, what you
deserve, and how safe it is to trust others.”
Recognizing these hidden beliefs helps users
understand their patterns with compassion (you’re not broken – you’re patterned
).
Attachment Theory and CCRT: Attachment style and psychodynamic frameworks like the Core
Conflictual Relationship Theme (CCRT) provide a structured lens for recurring relationship themes.
Many enduring relationship struggles are “rooted in unconscious emotional patterns formed early in
life”, as one CCRT-based quiz explains
. The CCRT approach boils patterns down to three key
pieces: Wishes, Responses of Others, and Responses of Self
. In other words: what do you
deeply desire from partners, what do you fear or expect others will do, and how do you respond when
•
1
2
3
4
5
1
2
•
6
7
1
---PAGE BREAK---
those needs aren’t met
. A quiz can directly leverage this structure. For example, early questions
might ask about the user’s relational wishes (“Deep down, I wish my partner would make me feel ”),
followed by questions about perceived responses from others (“When I open up emotionally, I
expect others will ”), and then about the user’s own responses (“When I feel unheard or hurt, I
typically ___”). This progression uncovers the person’s relational blueprint. If a user’s Wish is for
unconditional acceptance, but she expects criticism (Response of Other) and thus withdraws or
protests (Response of Self), the results can narratively highlight that contradiction. In fact, the
AttachmentProject’s Relationship Wellness assessment (based on a revised CCRT questionnaire)
explicitly measures these three dimensions to reveal “unresolved conflicts, unmet needs, and patterns”
in relationships
. By drawing on such frameworks, the quiz ensures its diagnosis has
psychological coherence – the final report can connect the dots between what she longs for, what
she fears, and how she reacts, which is often a real eye-opener.
Shadow Work and Self-Reflection: Another adjacent tool is shadow work, which encourages honest
self-scrutiny of one’s “dark side” or disowned traits. Shadow work prompts (often used in coaching or
journaling) ask blunt questions like “What am I avoiding?” or “What don’t I want others to know about
me?” to surface hidden vulnerabilities
. Incorporating milder forms of these questions into the
quiz can increase emotional resonance. For instance, an introspective quiz question might ask:
“Which scenario sounds most like you when you’re hurt? a) I pretend nothing’s wrong to avoid
conflict, b) I chase my partner for reassurance, c) I shut down and retreat inward.” This forces a
moment of reflection on one’s uncomfortable coping habits (avoidance, anxious pursuit, withdrawal)
in a way that feels personally significant. The goal is to gently confront users with their own shadows
so that when the quiz names their pattern (e.g. “fearful-avoidant dance” or “savior complex”), it truly
lands. Real-world self-discovery products often use such prompts to catalyze insight; for example, a
popular couples therapy question is, “What is your most significant vulnerability or Achilles heel in
relationships?” – a direct invitation to identify one’s core emotional weak spot
. Our quiz can
achieve a similar effect through carefully worded multiple-choice questions that implicitly ask the
user about their Achilles heel (e.g. fear of abandonment, fear of being controlled, etc.), thereby
priming them for the vulnerability pattern the report will later describe.
By weaving these frameworks together, we ensure the quiz isn’t just a random set of questions, but a
structured psychological diagnostic. Each question has a purpose: either mapping a schema/belief,
pinpointing an attachment/CCRT element, or prompting a shadow insight. This gives the eventual results a
rich, explanatory power – we can name the user’s pattern in terms of known constructs (like “abandonment
schema” or “pursuer-distancer pattern”) and explain why it keeps recurring. Most importantly, leveraging
established frameworks lets us frame insight as explanation, not as judgment or fortune-telling. The
patterns are presented as normalized phenomena (many people have them) that make sense given one’s
history, which keeps the tone compassionate and identity-safe.
Question Design Principles
Designing the quiz questions requires a careful balance between psychological depth and user
engagement. Below are key principles and strategies, including progressive disclosure, escalating
specificity, tension-building, and identity-safe framing, which together create a compelling flow.
8
9
10
•
11
12
13
2
---PAGE BREAK---
Progressive Disclosure & Escalating Specificity
Progressive disclosure is a UX and survey design technique where information (or in this case, question
content) is revealed gradually, from simple to complex, as the user progresses
. In a quiz context, this
means we don’t start with the most probing, personal question right away. Instead, we ease the user in,
building trust and interest question by question. Early questions should feel accessible and relatable,
while later ones venture into more sensitive territory once the user is emotionally invested. As one design
expert puts it, “progressive disclosure…escalates from simple to more complex, showing only the necessary and
relevant information at any single point in time.”
For example, the first few items might be broad
statements or scenarios anyone in a relationship can recognize (e.g. “I often find myself in the same kind of
arguments no matter who I’m with – Yes/No?”). This sparks recognition without demanding deep self-
disclosure yet.
As the quiz continues, questions become increasingly specific to the user’s experiences. This is the
“escalating interest” aspect of progressive disclosure – each step should heighten the user’s curiosity and
emotional engagement
. A practical approach is to follow a funnel structure: - Stage 1 – Broad Pattern
Recognition: Begin with questions that help the user identify broad-brush patterns or feelings. For
instance: “Which relationship scenario sounds most familiar to you?” followed by options that encapsulate
common patterns (e.g. “I give more than I get,” “I fall for emotionally unavailable people,” “Conflicts with my
partner spiral out of control,” etc.). This not only grabs attention (users immediately think “yes, that’s me!” if an
option resonates), but also validates their experience and prepares them for more detail. It’s similar to how
a therapist’s intake might first ask generally about what brings someone in or what patterns they notice. -
Stage 2 – Digging into Beliefs and Emotions: Once a user has identified the broad theme, the quiz can
pose more pointed questions about their beliefs or feelings in those situations. For example: “When you’re in
that situation, what do you secretly fear the most?” with choices like “That I’ll end up alone,” “That I’m not worthy
of love,” “That I’ll be smothered or controlled,” etc. These align with core schemas or attachment fears. At this
stage, we’re essentially unearthing the vulnerabilities underlying the pattern. It’s important that the
answer choices are worded non-judgmentally and represent common vulnerable beliefs – seeing their fear
articulated so plainly can be a powerful emotional hook (users often feel “wow, that’s exactly what I fear”).
This technique mirrors therapeutic assessment questionnaires that list thoughts/feelings for clients to
endorse; it helps externalize internal fears in a less threatening way. - Stage 3 – Behavioral Specifics &
Reactions: Next, ask about how the user typically responds or behaves when their fear or pattern is
triggered. For example: “How do you usually react when you sense things are going wrong?” Options might
include “I withdraw and emotionally shut down,” “I start chasing my partner for reassurance,” “I get angry or
critical,” “I pretend nothing is wrong and people-please,” etc. These map to classic coping styles (fight, flight,
fawn, freeze). By now, the quiz has moved into very specific, personal territory – the user is recalling
concrete behaviors and likely reliving emotions associated with them. This escalation creates a kind of
narrative: pattern → core fear → reactive behavior. It sets the stage for a later “lightbulb moment” when the
result explains how these pieces fit together. Notably, this line of questioning aligns with the CCRT model
described earlier (Wish → Fear/RO → Reaction/RS) and ensures we gather all ingredients needed for a
coherent analysis
. - Stage 4 – Contradiction & Reflection: To build tension and introspection before the
quiz concludes, we can include a question that highlights any internal contradiction the user might
experience. For example: “When it comes to intimacy, which of these statements feel true? (Select all that apply)”
with choices such as “I crave deep closeness,” and “Deep down I’m afraid of losing myself or getting hurt if I get
too close.” Many people will relate to both statements – a push-pull between craving love and fearing it. If a
user selects seemingly opposite responses, the quiz can later leverage that by explaining the push–pull
dynamic in her report (this addresses the “explaining contradictions” goal). Even if she picks only one, the
14
14
15
7
3
---PAGE BREAK---
question itself plants a seed that such contradictions exist. Another approach is a pair of back-to-back
questions: one about what they want in a relationship and one about what they do when things get tough –
any disparity is noted. This gentle confrontation of “I want X, but I often end up doing Y” creates an emotional
dissonance (a bit of cognitive dissonance) that heightens the user’s investment. She’ll be keen to see the
report explain why that happens. - Stage 5 – Future or Ideal Self (Optional): Depending on length, a final
question might ask the user to envision an ideal or to acknowledge the impact of the pattern. E.g. “If you
could change one thing about how you approach relationships, what would it be?” or “On a scale of 1-5, how
stuck do you feel in your current relationship patterns?” This can reinforce their desire for insight and change,
setting up the payoff. It’s somewhat akin to a motivational interviewing tactic – having them articulate a
need or wish to change makes them more receptive to the feedback/explanation the quiz will provide.
Throughout this progression, each question should feel naturally connected to the previous one,
almost like a conversation that’s digging deeper. This maintains narrative flow and avoids the quiz feeling
like a disjointed interrogation. By the time the user reaches the end, she should feel a bit of suspense –
she’s acknowledged a lot of personal truths and likely sees the outline of a pattern, but she’s eager to
understand the “why” and “how” behind it all. In essence, we’ve created a small narrative arc within the
questions themselves: starting broad, delving into fears, then reactions, then framing the unresolved tension.
Research on user experience suggests that such an arc, moving from a clear start to a “peak” of intensity,
and ending with a tease of resolution, keeps people engaged and improves how they remember the
experience
. This is directly related to the peak–end rule – people evaluate an experience based on its
most intense point and its ending
. So we want the latter part of the quiz to be emotionally intense
(peak) and then stop just short of full resolution (end) to maximize impact (more on leveraging this in the
paywall section below).
Emotional Engagement and Tension-Building Strategies
To ensure the quiz isn’t just intellectually interesting but also emotionally gripping, we need to design for
emotional engagement. Here are some tactics:
Relatable, Story-Driven Questions: Where possible, frame questions as mini-scenarios or use
evocative language that prompts the user to visualize or recall feelings. For example, instead of a dry
question like “Do you struggle with communication? (Yes/No)”, one might ask: “Think back to the last
argument you had – did you find yourself shutting down, even when part of you wanted to speak up?” This
phrasing invites the user to mentally step into a real moment of their life. It’s effectively triggering
episodic memory, which will bring up the emotions from that event, making the quiz experience
more vivid. Emotional memory triggers create a stronger bond to the content. A question like this
also builds tension by highlighting an internal conflict (“wanted to speak up” vs “shutting down”) in
narrative form. By the time a user selects “Yes, exactly” to a question like that, she’s emotionally
hooked because the quiz just described something she perhaps hadn’t fully admitted. Therapeutic
intake interviews often use this approach – asking clients to describe the last time something went
wrong to ground the discussion in concrete feelings rather than abstractions.
Use of “You” and Empathic Tone: Addressing the user as “you” in the question text can increase
engagement, but it must be done carefully to avoid sounding accusatory. The tone should be as if
the quiz is an understanding friend or a therapist in text form: curious, empathetic, and occasionally
challenging in a supportive way. For instance, “Do you sometimes feel like you’re ‘too much’ for your
partner when you express your needs?” is direct but gentle, tapping into a common insecurity. If that’s
true for the user, just reading the question can elicit an emotional pang (feeling seen). Questions that
16
16
•
•
4
---PAGE BREAK---
name common emotional experiences (feeling “too much,” “walking on eggshells,” “always the giver,”
etc.) serve as emotional anchors – they resonate strongly with users’ self-perceptions or pain
points, increasing the likelihood they’ll continue. As Terry Real’s relationship quiz promo
demonstrated, listing recognizable situations (e.g. “The fights that won’t end. The love that feels
distant.”) immediately draws people in by validating their experience
. Our quiz questions can do
the same on a micro level.
Balancing Depth with Brevity: Each question should be clear and not overly long. Emotional
engagement doesn’t mean writing a novel in the question prompt – too much text can overwhelm or
tire the user. The key is choosing potent phrasing that carries psychological weight. A single well-
chosen phrase can evoke an entire history for the user (e.g., “I secretly worry my partner will abandon
me” – a simple statement that could encapsulate years of anxiety). Using familiar emotional
language is crucial. Words like “unloved,” “trapped,” “unsupported,” “not good enough,” “afraid,” etc.,
if applicable, will immediately resonate. Indeed, in identifying potential quiz “angles,” one guideline
is to ensure “emotional language exists (frustration, shame, confusion)” around the problem being
addressed
. Our quiz should incorporate such language in the questions so that users feel we’re
speaking their emotional dialect.
Identity-Safe and Non-Judgmental Wording: Emotional safety is paramount for honest
engagement. The quiz must never shame or blame the user for their patterns; instead it should
normalize them. This is where identity-safe language comes in. As noted earlier, framing like “you
are not broken – you’re patterned”
or “these are not character flaws, but learned reactions”
sets a
compassionate tone. In practice, when writing questions, this means avoiding labels like “toxic,”
“needy,” “insecure” directed at the user. Instead, describe behaviors or feelings in a way that
externalizes the problem. For example, rather than asking “Are you insecure in relationships?”, which
may feel accusatory or shameful, ask “Do you often worry that your partner might leave, even if things
are going well?”. The latter gets at insecurity but via a specific worry that the user can admit to
without feeling stigmatized. It’s more inviting for an introspective person to agree “yes, I do worry
about that” than to self-identify as “insecure.” Similarly, instead of “Do you have trouble with trust?”,
ask “Has it been hard for you to fully trust the people you date?”. Minor wording tweaks preserve the
user’s sense of agency and dignity. The quiz should feel like it’s on the user’s side, helping them
investigate patterns, not passing verdicts on them.
Use of Inclusive, Empathic Options: The answer choices for each question should also follow
identity-safe principles. For example, if providing multiple-choice options about negative behaviors,
phrase them gently. Rather than “I become clingy and desperate,” an option could say “I feel panicked
and try very hard to fix the relationship.” Instead of “I shut down and ignore my partner,” use “I retreat
and need space to protect myself.” Both convey the behavior, but the latter phrasing empathizes with
the user’s underlying need (protection) rather than judging the action (ignoring). This approach
reflects therapeutic empathy – understanding the function of a behavior. When users see answer
options that validate the underlying emotion or need (e.g. needing protection, seeking
reassurance), they feel understood and are more likely to engage deeply and answer honestly.
Building Tension and Curiosity: We want to keep a subtle undercurrent of tension as the quiz
progresses. Each new question can be posed as if peeling back one more layer of the mystery of
“Why do I keep ending up here?” For instance, after a particularly revealing question about their fear,
the next question’s wording might hint at “could there be something in your past influencing this?” (if we
had a question about childhood or first love, for example). Even if we don’t dive fully into childhood
history (which might be too heavy for an online quiz), alluding to it can create anticipation that the
final report will connect those dots. It’s similar to a good narrative: build up an unresolved thread
(tension) that the user expects will be resolved in the conclusion.
17
•
18
•
2
5
•
•
5
---PAGE BREAK---
Personal Investment through Disclosure: By the end of the quiz, the user will have disclosed (to
themselves, if not to us, since answers are private) a series of personal truths. This in itself creates a
sense of investment. Psychologically, when we spend time and emotional energy on a task, we value
it more and want to see it through – this is related to the sunk cost effect and commitment/
consistency principle. Even beyond rational calculation, the very act of leaving a story unfinished
tends to preoccupy the mind (thanks to the Zeigarnik effect, which we’ll leverage at the paywall)
.
Thus, each emotionally engaging question not only provides data for the diagnosis but also deepens
the user’s commitment to obtaining the answer for themselves. By the final question, ideally the user
feels “I’ve come this far and opened up – I need to know what it all means.” That emotional momentum
is by design.
Framing and Identity-Safe Language
We’ve touched on identity-safe language in questions; it’s equally crucial in how the results/report are
framed (even the preview of results before the paywall). The quiz should maintain an explanatory,
empathetic tone throughout the user journey. Some guidelines and examples for framing:
Use Explanatory, Not Prescriptive, Tone: The outcome is framed as insight and understanding, not
as labeling or as instant transformation advice. For example, instead of a result that says, “You are a
People-Pleaser who needs to set boundaries,” which could feel stigmatizing or preachy, frame it as, “You
appear to have a pattern of prioritizing others’ needs over your own – a pattern often rooted in a deep fear
of rejection or a need to earn love. This explains why you might feel burned out or unappreciated in
relationships.” See how this names the pattern (people-pleasing) without using the actual label that
might carry shame; it focuses on the vulnerable motive behind it and validates the resulting feelings.
It’s offering an explanation (“this is often rooted in…”) that can make the user say “Oh, that makes
sense!”. The Gottman Institute’s approach in couples therapy is similar – they emphasize accepting
and understanding underlying needs rather than blaming behavior, noting that “communicating
fundamental acceptance instead of rejection of the person is basic to solving problems”
. Our quiz
results should communicate acceptance of the user (you developed this pattern for understandable
reasons) while illuminating the problem.
Normalize and Universalize: Make it clear that the patterns identified are common and changeable,
not a permanent defect. Phrases like “many people who went through X develop a similar pattern,” or
“these coping styles are widespread – you learned them because they worked at some point” can be
sprinkled in the narrative. The schema therapy quiz we examined does this masterfully, reassuring
takers that “You are not broken—you’re patterned. And those patterns can be changed.”
Such
wording gives hope and also avoids any notion that the quiz is “diagnosing” a fixed pathology. In the
questions and in results, avoid pathologizing terms (we wouldn’t say “you have borderline traits” or
anything clinical even if some answers hint at intense behaviors; we stick to lay terms and emphasize
patterns over pathology).
Highlight Strengths Alongside Vulnerabilities: Identity-safe feedback means not defining the user
solely by their problem. A great technique (used in many positive psychology or coaching reports) is
to acknowledge the strengths or good intentions embedded in a pattern. For example, if someone’s
pattern is “over-giving” in relationships, the report might say: “You love deeply and have a huge heart –
when you care about someone, you give it your all. This is a beautiful quality, but it can also lead you to
ignore your own needs…” etc. By front-loading the positive (“huge heart”), we ensure the user’s
identity (e.g. being a caring person) is honored, even as we explain the downside (self-neglect or
attracting takers). Similarly, an avoidant pattern could be reframed as “You value independence and
•
19
•
20
•
2
•
6
---PAGE BREAK---
emotional safety” before explaining the costs in intimacy. This kind of strengths-based reframing
keeps the user open to hearing the tougher insight because they feel seen in a positive light too.
Use “Parts” or “Patterns” Language, Not Global Labels: Instead of saying “You are X,” phrase it as
“You have a pattern of X” or “Part of you tends to X.” For instance, “You have a pattern of putting up walls
when someone gets close” is softer than “You’re emotionally unavailable.” Likewise “One part of you longs
for closeness, while another part gets nervous when things become too intimate” invokes the idea that
we all have sub-personalities or conflicting drives – a very normal human experience – rather than
making the user feel like a walking paradox. This parts-based language is common in therapies like
Internal Family Systems and is great for reducing shame. The user can think, “Yes, that’s a part of me,
but not all of me.” It maintains their sense of wholeness and competence.
Language of Agency and Choice: Even though the quiz is diagnostic (not a change tool per se), we
still want to leave users feeling empowered, not fatalistic. So the framing can include subtle
reminders of agency. For example, after explaining the pattern, the report might say, “Understanding
this pattern is the first step. Now that you see it, you can start to notice when it’s playing out – and in those
moments, you’ll have new choices.” Notice this doesn’t jump into advice mode (we’re not giving the how
in detail), but it does position the insight as useful and the user as capable of making changes if they
desire. It’s an invitation, not an instruction. This kind of hopeful language increases the perceived
value of the insight (since it can lead to positive change), which in turn makes users more willing to
pay or sign up for further resources.
In sum, every touchpoint of text, from questions to results preview, should feel supportive and
explanatory. The quiz essentially says to the user: “Here’s what might be going on with you – it’s something
human and understandable. Let’s shine a light on it together so it finally makes sense.” By using this empathetic
framing, we maintain the user’s openness and trust. This is crucial because the more open and trusting they
feel, the more likely they are to invest in reading the full report (and crossing the paywall to do so).
Importantly, this tone also aligns with ethical practices (not doing harm or triggering excessive shame),
which is important given we’re dealing with emotional subject matter.
Constructing the Narrative Report
The output of the quiz – the diagnostic report or results page – is where all the careful questioning pays
off. A compelling results narrative should feel like reading an insightful synopsis of one’s relational life story. It
needs to provide psychological coherence: tying together the user’s answers into a meaningful narrative
arc that names their core pattern, illustrates how it manifests across different relationship phases, and
reconciles any contradictions in their behavior or feelings.
Here’s how to shape the report content:
Give the Pattern a Name: Starting the report with a memorable label or title for the user’s pattern
can have a powerful validating effect. It’s the moment of “Yes! That’s me!” when done right. The name
should be evocative but non-judgmental. Many consumer quizzes use archetypal or metaphorical
names (e.g. “The Worried Caretaker” or “The Independent Protector”) which capture the essence
of the pattern. For instance, if the quiz determined the user often pursues partners who pull away,
the pattern might be dubbed “The Anxious Chaser” or “The Abandonment Alarm” – something
that conveys both the behavior and the vulnerable root (anxiety about abandonment). Accompany
this with a brief description like, “Your relationship pattern: The Anxious Chaser. You have a deep fear of
rejection, which drives you to pursue reassurance and connection – often with partners who, for their own
•
•
•
7
---PAGE BREAK---
reasons, maintain distance. This dynamic leaves you feeling perpetually on edge, craving closeness yet
expecting the other shoe to drop.” In one or two sentences we’ve captured the pattern and its
emotional core. This is the hook of the report, and it should ideally be presented right before the
paywall or sign-up gate, to capitalize on the user’s heightened interest. (We’ll discuss the paywall
positioning shortly, but the idea is to reveal enough here that the user is intrigued but still wants
more details.)
Break Down the Pattern by Relationship Phase or Component: To give full coherence, the report
can be structured in sections that mirror either the timeline of a typical relationship or the CCRT
components. For example, consider using a chronological phase approach:
Initial Phase – Attraction/Selection: Explain why they’re drawn to the partners or situations that
trigger the pattern. “At the start of relationships, you tend to feel an intense spark and hope – especially
with partners who show a hint of unpredictability. This isn’t random; subconsciously, it recreates a familiar
challenge from your past (perhaps an emotionally inconsistent parent or earlier relationship). You pursue
the spark even if red flags appear, because a part of you is determined to finally ‘earn’ the love that feels
just out of reach.” This kind of explanation ties their pattern to an origin story or emotional logic,
giving insight into the why. It also touches on the relationship phase of new romance.
Middle Phase – Conflict/Distance: Next, describe how the pattern plays out when challenges arise.
“As the relationship deepens and normal conflicts or distance occur, your pattern kicks into high gear.
When you sense your partner pulling back (maybe they need space or get busy), your ‘abandonment
alarm’ sounds loudly. In response, you might double-call or overextend gestures of affection to pull them
close, or conversely, you might panic and start assuming the worst. This often has the unintended effect of
pushing your partner further away, confirming your fear in a painful loop.” Note how this narratively
shows cause-and-effect within the conflict phase of the relationship. It also integrates the user’s
responses (from Stage 3 questions) and the partner’s likely response (distance), demonstrating the
patterned dance between them. We’re basically reflecting to the user the script they’ve been living,
which can be very illuminating when laid out objectively.
Ending/Renewal Phase – Outcome: If the pattern tends to lead to breakups or unhappiness,
describe that and how the user feels, and possibly how the cycle might start again if not addressed.
“Eventually, these dynamics often lead to a breaking point. You may feel you’re ‘too much’ for your partner
and end up heartbroken, or you settle for an unsatisfying status quo where you’re always anxious. Either
way, the relationship doesn’t become the secure haven you crave. Without realizing it, you might then
choose a similar partner again – restarting this cycle – because the pattern itself remains unrecognized
and unhealed.” This drives home the impact of the pattern and creates a poignant sense of
incompleteness – which the user is likely strongly feeling by now. We purposely highlight that it’s a
repeating loop (hence “pattern”), which implicitly prepares them to want to break it (and thus
perhaps to seek the solution or next step that you might offer after the quiz).
Alternatively, the report could be organized by thematic components (similar to how the schema quiz
provides a breakdown of each schema). For example: - Core Fear/Belief: Summarize the underlying
vulnerability (from their answers). “Core Vulnerability – Fear of Abandonment: You carry a belief that people you
love will eventually leave or hurt you. This likely formed from earlier experiences where love was conditional or
inconsistent. It’s like a pair of tinted glasses coloring every new relationship
– even when things are good, that
fear lurks in the background.” (Notice we cited the schema concept that unmet needs form schemas which
act like tinted glasses, distorting expectations
. This lends credibility to our explanation.) - Protective
Strategy/Behavior: Explain what the user typically does (their go-to coping behavior) and why it makes
sense emotionally. “Protective Pattern – Clinging and Over-giving: To cope with your fear of abandonment, you
tend to cling tighter when you feel someone slipping away. It’s a strategy you likely learned long ago – if I prove
I’m worthy or always available, maybe they won’t leave. You also may over-give, hoping to ‘earn’ their love.
•
•
•
•
21
21
8
---PAGE BREAK---
Ironically, while these behaviors come from a heartfelt place of wanting connection, they can overwhelm partners,
or attract those who take advantage. As a result, the very thing you do to feel safe can lead to feeling even more
neglected or unappreciated.” This portion uses a psychological explanation of the contradiction: the user’s
strategy contains the seeds of the outcome they fear, but framed gently (ironic, not foolish). - Emotional
Consequence: Describe the emotional cycle the user experiences (anxiety, temporary relief, crash, etc.).
“Emotional Cycle: The pattern often leaves you on an emotional rollercoaster – brief relief when you pour love in
and get a response, followed by crashing anxiety when it’s not reciprocated at the same level. Over time, this
erodes your self-esteem and reinforces the belief that you’re ‘too much’ or ‘not enough,’ when in fact it’s the pattern
that’s setting you up to feel that way.” - The Other Side (Partner Role): It can be enlightening to also
comment on the typical partner in this dynamic (without casting blame on the user). “You might have noticed
you’re often drawn to partners who are a bit avoidant or self-focused. They aren’t necessarily bad people, but they
have their own patterns (for instance, needing more space or being less emotionally available). This creates a
pursuer-distancer dynamic: the more you chase, the more they run – and vice versa
. It’s a dance of two
patterns colliding.” This helps the user see it’s not all them; relationships are systems. (We nod to Terry Real’s
idea of predictable quadrants – one partner goes silent, the other pursues, etc.
.) - Why It Makes Sense
(Empathic Wrap-Up): End the narrative portion by reiterating that this pattern makes sense given her history
and needs. “Crucially, there’s nothing ‘wrong’ with you – this pattern is a common human response to the
experiences you’ve had. You learned to protect yourself the best way you knew how. Now that you can see it, you
have the power to change the story going forward.” This final reassurance is identity-safe and empowering,
ensuring the user leaves the report (or the preview of it) feeling understood, not judged.
Illustrate with Examples: Where possible, pepper the report with 1–2 short examples or
hypothetical anecdotes that mirror the user’s life. For instance: “Imagine: You text your partner and
they don’t reply for hours. By the time they do, you’ve already imagined the relationship is over. In a panic,
you send a flurry of follow-up texts… sound familiar? This is a hallmark of the pattern – a small trigger
ignites a big reaction rooted in old wounds.” Such examples make the analysis concrete. They
essentially play back to the user the scenarios they likely envisioned while taking the quiz. This not
only proves that the report “gets it,” but also evokes the emotions again while reading (keeping them
engaged). In therapeutic terms, we’re naming the pattern and its impact in a way that feels
personal.
Contradictions Explained: If the user’s answers indicated a contradiction (like wanting intimacy but
fearing it), directly address that paradox in the narrative. “It’s worth noting the inner conflict you might
feel: you deeply crave love, yet part of you pushes it away when it arrives. This push-pull is actually
common – it’s your fear guarding your heart. The closer someone gets, the more you fear the eventual
hurt, so you instinctively create distance (even if it’s just becoming critical or having doubts) to protect
yourself. Understanding this can help resolve the confusing question of ‘why do I keep sabotaging what I
say I want?’ – it’s not sabotage, it’s self-protection that’s simply out of sync with your present desires.”
Explaining the logic of the illogical is immensely validating. The user might have felt crazy or
hypocritical for her contradictions; hearing a compassionate explanation diffuses that shame and
provides clarity. It also reinforces the value of the quiz: it delivered an answer to a puzzle in her
psyche.
Psychological Backing: While the report should be written in user-friendly language (not academic
jargon), subtly weaving in bits of psychological theory or terms can strengthen credibility and
coherence. For example, mentioning “pursuer-distancer dynamic” or “self-fulfilling prophecy” or
“schema” (briefly defined) can signal that this isn’t pop astrology but grounded in psychology. The
schema quiz, for instance, explains how a Defectiveness schema might cause someone to “settle for
mistreatment—reinforcing the belief” that they’re not good enough
. We can mimic this style:
22
22
•
•
•
23
9
---PAGE BREAK---
“Because you believe deep down you might not deserve consistent love (a belief formed long ago), you may
tolerate or even be attracted to inconsistency – unfortunately, that reinforces the very belief (a painful
cycle).” Including such cause-effect statements with psychological vocabulary (reinforces the belief,
self-fulfilling, unconscious expectation, etc.) gives the report intellectual weight while still making
sense to a layperson.
Length and Format: The detailed narrative should ideally span a few concise paragraphs or bullet
points under clear subheadings (if the format allows). Breaking it into sections (as outlined: e.g. “Your
Core Fear”, “Your Coping Pattern”, “The Relationship Dynamic”, “Why It Makes Sense”) helps readability.
Short paragraphs (2-4 sentences) and occasional bullet lists (perhaps to enumerate key factors or
do/do not behaviors) will align with the user’s preference for scannable content. Remember, the user
is emotionally invested but may also be a bit anxious to get the info – a wall of text could be
overwhelming. Keeping it structured and digestible will make them more likely to actually read it
(which is crucial if we want them to feel the need for the rest of it behind the paywall).
If done well, reading this report should feel to the user like having a mirror held up gently to their soul. The
tone is “This is you, and it makes sense, and here’s the narrative of how it happens.” It should click together the
pieces from the quiz in a way that feels illuminating. The reaction we aim for is along the lines of what one
quiz testimonial said: “I felt so seen… it opened a completely new kind of conversation.”
– even if our user
exclaims this just to herself, we’ve succeeded.
The Paywall: Leveraging the Zeigarnik Effect and Loss Aversion
Finally, we arrive at the delicate art of the paywall or sign-up gate. The goal is to maximize the chances
that after taking this emotionally engaging quiz, the user is willing to pay (or provide an email, etc.) to get
the full results. To do this, we tap into the Zeigarnik effect – people’s tendency to feel discomfort with
unfinished tasks and a strong desire to see them completed
– and the principle of loss aversion –
people strongly prefer avoiding a loss to acquiring a gain. In our context, loss aversion means the user
would feel it’s a “loss” to walk away now and forfeit the juicy insights they've partly unlocked.
Key strategies for the paywall stage:
Create a High-Value Moment Right Before the Paywall: Research on app conversions has found
that “a high-value moment just before the paywall can significantly increase conversions.”
In the quiz
context, that “high-value moment” is the initial reveal of results we discussed – e.g., naming their
pattern and perhaps giving a tantalizing summary of their situation. We should deliver enough
insight to feel rewarding, but leave enough unsaid to provoke curiosity. For example, show the
pattern name and one key paragraph (the “hook” description), and perhaps list the sections that the
full report will cover (e.g., “Your Core Fear, Your Coping Style, Your Ideal Next Steps”) without
revealing their content. This partial reveal serves two purposes: it rewards the user for taking the
quiz (so they feel it was worth it and not a bait-and-switch), and it creates a cliffhanger. It’s akin to a
TV show ending an episode at a dramatic reveal – the viewer must tune in next time. Here the user
must “tune in” by converting (paying or signing up).
Explicitly Leverage the Zeigarnik Effect (Unfinished Story): The language around the paywall can
remind the user that their story is incomplete. For example: “Your personalized Relationship Pattern
Narrative is ready to reveal – finish reading to understand how each chapter of your love life
interconnects.” Or “Don’t stop here: the next sections explain why you have this pattern and how it shows
up from start to finish in a relationship.” This messaging plays on the psychological tension we’ve built.
•
24
19
•
25
•
10
---PAGE BREAK---
The user likely feels that tension internally; we are just nudging them to resolve it. The Zeigarnik
effect tells us the mind keeps nudging us about unfinished business
. By explicitly pointing out
“hey, you’ve come this far, just one more step to see the rest,” we amplify that nagging feeling that
they need closure. Even a simple phrase like “Continue to full report” or “Unlock full story” uses the
implicit idea that stopping now = an unfinished task.
Invoke Loss Aversion: Emphasize What They’d Miss: Loss aversion means people are more
motivated by the fear of losing something of value than by a potential gain. By the time the user
reaches the results preview, the “something of value” is the insight into themselves. We need to
make it clear (without being overly pushy) that if they leave now, they’re losing out on
understanding themselves fully. One tactic is to phrase the call-to-action in terms of ownership
. For instance: “This in-depth report is your story – claim it now to see the full picture of your
relationships.” Using “your” frames the insight as already theirs; not getting it would be a loss of
something they own or deserve. Similarly, one could say, “Don’t leave your pattern untold – see your
full results now.” Another approach is highlighting the effort they’ve already invested (sunk cost):
“You’ve already uncovered the pattern name – now see how all your answers come together in your
complete relationship pattern analysis.” This leverages what conversion experts advise: “create a sense
of ownership – so when they hit the paywall, rejecting the offer feels like losing access to something they’ve
already invested in”
. The user has effectively “invested” their honest answers and emotional
energy; we frame the paywall as just the key to unlock the fruits of that investment.
Peak-End Rule – End on a High Note (Then Interrupt): As mentioned, according to the peak–end
rule, people remember the end of an experience strongly, especially if it’s emotionally charged
.
We design the quiz so that the peak emotional moment is just before the paywall, and the quiz
experience “ends” at that interrupted point. For example, the reveal of the pattern might be
something that gives the user a jolt of recognition – that’s the emotional peak. Immediately after, we
cut to the paywall prompt. In effect, the user’s last emotional state in the free portion is one of
intense interest and half-satisfied curiosity. They haven’t gotten resolution (which is withheld behind
the paywall), so that feeling sticks. It’s like ending a movie on a cliffhanger – viewers keep thinking
about it. By carefully orchestrating this peak-end sequence, we increase the likelihood the user won’t
just shrug and walk away. They’ll remember how engaging and insightful the experience was up until
it stopped, and that positive-but-incomplete memory biases them toward wanting to complete it
.
Ease of Conversion & Trust: On a practical note, to capitalize on these psychological effects, the
conversion step should be as frictionless as possible. If it’s a paywall, offer a quick checkout; if it’s an
email signup for the report, make the form simple. Also, reassure users about privacy (especially
given they shared personal info in the quiz) – e.g., “Your responses are confidential, and your report
will be delivered securely.” Introspective users may be cautious about where their data goes, so
addressing that concern can remove a barrier to conversion. The emotional momentum can be
squandered if the user suddenly worries “Wait, who’s seeing my answers?” at the paywall. A line in
fine print or small italics about data safety can help maintain trust at the critical moment.
Ethical Use of Tension: While using psychological levers, maintain an ethical stance – the goal is to
encourage conversion by highlighting value, not to manipulate through fear. Loss aversion in our
case is not about a fake sale ending, but about genuine personal insight they’d lose. We should deliver
on that promise post-paywall. The Zeigarnik tension we create should be resolved by real, high-
quality content in the paid report, so the user feels the completion was worth it. This ensures that
even though we applied a nudge, the user’s eventual satisfaction is high (which is important for
word-of-mouth and long-term trust in the brand or tool).
19
•
26
27
27
•
16
19
16
•
•
11
---PAGE BREAK---
As a real-world comparison, many online psychology tests use exactly this model: a free quiz with a teaser
result and a paid full report. For instance, Truity’s personality assessments or the AttachmentProject’s
detailed attachment style report provide some free findings (like your attachment style label) but require
purchase or signup for the full analysis. Users often convert because by the time they’ve taken 5-10 minutes
to thoughtfully answer questions about themselves, not knowing the full results feels like an unacceptable loss.
Our quiz aims to evoke that same “I gotta know!” feeling.
By combining the intrinsic emotional investment (from the quiz design) with smart paywall framing
(Zeigarnik cliffhanger + loss aversion messaging), we significantly boost the likelihood that users will cross
that finish line. They will feel that not getting their full narrative is like leaving a story unfinished, or even like
losing something personal they’ve created (their answers and resulting analysis). And because our content
genuinely addresses a meaningful pain point (relationship struggles), the perceived value of the insight is
high – making the cost (whether monetary or just an email) feel justified.
To summarize, building a compelling, emotionally resonant relationship pattern diagnostic quiz involves
marrying therapeutic depth with engaging design. We start by grounding the content in proven
psychological frameworks (so the insight has real substance). We craft questions that flow logically and
progressively, from broad to intimate, always in language that invites honesty and avoids defensiveness.
We use tension and emotional hooks to keep users invested, essentially guiding them through a mini-
journey of self-discovery. The report then reflects back a cohesive narrative that makes them feel deeply
understood and enlightened about their patterns. And at the crucial moment, we use that engagement to
gently push them to take one more step (the paywall), leveraging their natural desire for completion and
fear of missing out on the knowledge they’ve nearly obtained.
In the end, the user experiences the quiz as not just a Q&A, but as a personalized story-building process –
one that starts with curiosity, leads them through reflection and recognition, and ends (after the paywall) with
explanation and insight. By following these principles, we create a tool that is not only diagnostically valuable
but also genuinely transformative in the moment for the user – they feel seen, they connect dots, and
they are emotionally moved. Below is a quick-reference table summarizing example question types, with the
psychological levers each one pulls, to illustrate how these strategies come to life in practice.
12
---PAGE BREAK---
Example Question Types and Psychological Levers
Question Type & Purpose
Example Question / Prompt
Psychological Lever(s)
1. Pattern Recognition
(Broad Opening)<br>(Identify
recurring theme at a high level)
“Which relationship scenario
sounds most like you?<br>- I
always end up feeling
unappreciated no matter
who I’m with.<br>- I often
feel smothered or trapped
when things get
serious.<br>- I frequently
wind up in relationships
where I’m chasing the other
person’s affection.<br>- I
tend to lose interest once the
‘chase’ is over.”
Self-identification: Encourages user to
see their situation in one of these
common narratives, creating instant
resonance. Validates that there is a
“pattern” happening, sparking
curiosity
. Starts simple, non-
threatening.
2. Core Belief / Fear
Probe<br>(Surface underlying
vulnerability or schema)
“Deep down, what is your
biggest fear in
relationships?<br>- That if I
truly open up, I’ll be rejected
or left.<br>- That I will lose
my independence or sense of
self.<br>- That I’ll be
betrayed or cheated on
eventually.<br>- That I’ll
never find someone who
really understands me.”
Vulnerability & Introspection: Forces
reflection on a guarded fear. Options
correspond to common schemas
(abandonment, enmeshment,
mistrust, emotional deprivation).
User feels a twinge of emotional
truth picking one. Language is first-
person and emotive (“rejected,”
“never find someone”), increasing
emotional engagement. Also
introduces specificity after broad Q1,
escalating commitment.
3. Behavioral Reaction
(Coping Style)<br>(Identify
how they typically react under
stress)
“When you’re upset or
anxious about your
relationship, what are you
most likely to do?<br>- I
withdraw and ice them out
(go silent for days).<br>- I
seek reassurance and don’t
give them space until I feel
better.<br>- I act like
everything is ‘fine’ and tend
to their needs, even when I’m
hurting.<br>- I get angry or
confrontational and push for
a resolution immediately.”
Self-observation & Ownership:
Encourages honest appraisal of
one’s go-to coping behavior. The
options map to fight/flight/fawn
responses but are phrased neutrally
(no harsh labels like “clingy” or
“aggressive”). Recognizing their
behavior in an option can be an
“ouch, that’s me” moment that
increases self-awareness. This also
personalizes the narrative – the user
starts to “own” their pattern
(investing more).
28
13
---PAGE BREAK---
Question Type & Purpose
Example Question / Prompt
Psychological Lever(s)
4. Scenario
Visualization<br>(Elicit
emotional memory by
imagining a typical scenario)
“Imagine your partner hasn’t
replied to your last message
in 5 hours, even though
they’ve been online. Where
does your mind typically go?
<br>- They must be upset with
me or losing interest.<br>-
They’re just busy; I try not to
worry, but I do feel a bit
anxious.<br>- I feel relief – I
need space sometimes
too.<br>- I get angry that they
can’t take two seconds to
respond.”
Emotional trigger & realism: Puts the
user in a familiar stressful moment,
triggering real feelings. The internal
thoughts as options reveal their
attachment anxiety vs. avoidance vs.
security vs. anger. This both gathers
rich info and heightens emotional
arousal (they recall the last time this
happened). It also builds tension by
highlighting their inner narrative
under stress (which the report will
later address).
5. Contradiction
Check<br>(Surface a possible
internal conflict)
“Which of the following
statements do you relate to?
(Select all that apply)<br>✔ I
desperately want a deep, soul-
connecting love.<br>✔
Intimacy freaks me out – I
sometimes feel safer alone.”
Cognitive dissonance & self-awareness:
Many introspective people will tick
both, revealing a conflict between
desire and fear. Seeing that they
related to two opposing truths can
be striking, setting the stage for an
explanation. Even if they select one,
the presence of the other option
plants the seed that contradictory
feelings can coexist. This question
implicitly says “it’s okay, many feel
both,” which normalizes and invites
honesty. It also increases curiosity:
“Why do I feel both? What does that
mean?”
14
---PAGE BREAK---
Question Type & Purpose
Example Question / Prompt
Psychological Lever(s)
6. Relationship History
Reflections<br>(Encourage
looking for repeating patterns
in past)
“Think about your last
couple of relationships. Did
you notice any pattern in
how they ended?<br>- They
tended to fizzle out once
initial excitement wore
off.<br>- My partner usually
ended it, saying I was ‘too
much’ or things moved too
fast.<br>- I often found a
reason to leave because I felt
suffocated or
unfulfilled.<br>- There hasn’t
really been a pattern – each
one ended for unique
reasons.”
Pattern confirmation & investment:
Asks the user to actively search their
memory for patterns, which
reinforces the premise that patterns
exist. If they choose an ending
scenario, it confirms the quiz’s
relevance (and gives more data: e.g.,
tends to be abandoned vs. tends to
do the abandoning). If they choose
“no clear pattern,” the quiz can still
work with that (maybe their pattern
manifests in another way). This
question also subtly reminds them
of past pain (if multiple relationships
ended similarly), increasing
emotional stakes to “break the cycle.”
7. Ideal Outcome / Self-
Image<br>(Clarify their
conscious aspirations or how
they see themselves)
“How do you view yourself
when you’re in a
relationship?<br>- I’m a giver
– I love taking care of my
partner, sometimes at my
own expense.<br>- I’m
independent – I never want
to lose me in a
relationship.<br>- I’m a
hopeless romantic – I fall
hard and fast, and I feel
things deeply.<br>- I’m
cautious – I keep my guard
up until I’m absolutely sure
of someone.”
Identity affirmation and safe labeling:
Allows user to choose an identity
statement that resonates. These
options are phrased positively or
neutrally (no one is “the bad guy”
here), which feels identity-safe. It
lets them assert how they like to see
themselves (or how they suspect
they behave), which the report can
then acknowledge (“You see yourself
as a giver, and indeed your
generosity is a strength… however,
our results show it can tip into self-
sacrifice, which leaves you feeling
depleted.”). This increases the user’s
sense that the quiz knows them, and
it gives a hook to deliver feedback in
their own terms.
15
---PAGE BREAK---
Question Type & Purpose
Example Question / Prompt
Psychological Lever(s)
8. Commitment Prompt (last
question to prime
conversion)<br>(Build
anticipation for insight and
subtly ask if they want answers)
“Do you feel like you
understand why your
relationships follow the
pattern they do?<br>- Not yet
– I’m still searching for an
explanation.<br>- Partly – I
have some ideas, but it’s not
totally clear.<br>- Yes – I think
I know exactly why (it’s ___ ).”
Anticipation & self-motivation: This
closing question makes the user
explicitly reflect on whether they
have an explanation for their
pattern. Most will answer “Not yet”
or “Partly,” which psychologically
primes them to be receptive to an
explanation (which the quiz report
promises to deliver). It builds
excitement that answers are
forthcoming. For those who think
they know, they’ve now stated their
theory – the report can acknowledge
where they’re right and add nuance.
This question essentially invites
them to agree that they need insight,
warming them up for the results/
paywall. It’s a final nudge of curiosity
(“I’m still searching for an
explanation”) that heightens the
Zeigarnik tension to get that
explanation.
Each of these example question types is crafted to serve a dual purpose: extract diagnostic information
and heighten the user’s emotional engagement. By using concrete scenarios, emotionally resonant
language, and a logical progression, the quiz keeps users hooked into their own story. The psychological
levers – from validation of their experiences, to gentle confrontation of their fears, to seeding curiosity –
ensure that by the end of the quiz, the user is not only primed to receive a powerful insight but is eager to
obtain it.
In conclusion, designing an emotionally resonant relationship pattern quiz is like leading the user on a
guided tour of their inner relationship world. At each step, we reveal just enough for them to say “yes, that’s
me,” then invite them deeper, balancing empathy and challenge. By the final reveal, we’ve created a mirror
in which they see the outline of their long-standing patterns – and naturally, they’ll want to step through
and see the full reflection in detail. Using thoughtful question design, narrative framing, and psychology-
informed engagement tactics, we turn what could be a simple quiz into a mini-journey of self-discovery that
not only diagnoses their relationship pattern, but does so in a way that feels personal, meaningful, and
motivating.
Sources:
Real, T. (2023). “What If Your Relationship Patterns Could Finally Make Sense?” – Quiz introduction
emphasizing hidden patterns and learned childhood reactions
.
Bay Area CBT Center. (2023). Schema Quiz Description – Explains maladaptive schemas as “tinted
glasses” shaping relationships and normalizes patterns as learned, not innate flaws
.
•
22
5
•
1
23
16
---PAGE BREAK---
Mindful Attachment Coaching. (2024). CCRT Relationship Patterns Quiz – Describes Core Conflictual
Relationship Theme: identifying wish, expected response from others, and response of self in
relationships
.
Kane, L. (2018). The Peak–End Rule: How Impressions Become Memories – Describes how people
remember an experience by its most intense point and its end, highlighting the impact of ending an
experience on a high note
.
Caruso, E. (2020). The Zeigarnik Effect and its Design Implications – Discusses how unfinished tasks
create tension and draw people back in, analogous to using cliffhangers and incomplete narratives
to increase engagement
.
Sub Club Podcast – Sylvain Gauchet on Paywalls (2024). Key takeaways on using storytelling and loss
aversion in conversion flows: “Strong hooks and a high-value moment before the paywall” and
encouraging investment so rejecting the paywall feels like a loss
.
PositivePsychology.com – Therapy Intake Questions & Couples Therapy Questions – Examples of deep
questions used in therapy, such as identifying one’s “most significant vulnerability in relationships,”
which inform our quiz question design
.
Cowlishaw, O. (2026). The Best Shadow Work Questions for Beginners – Highlights introspective
prompts like “What am I avoiding?” to get to root issues, inspiring our approach to probing
uncomfortable truths in a quiz setting
.
Discover Your Relationship Schemas with Our Quiz
https://bayareacbtcenter.com/relationship-schema-quiz/
Quiz – Terry Real Quiz
https://quiz.terryreal.com/quiz/
CCRT Relationship Patterns Quiz | Understand Your Relational Triggers
https://www.mindfulattachmentcoaching.com/core-relationship-patterns-quiz
Relationship Wellness Test | CRQ Relationship Test - Attachment Project
https://www.attachmentproject.com/relationship-wellness-test/
The Best Shadow Work Questions For Beginners – Oliver Cowlishaw
https://www.olivercowlishaw.com/the-best-shadow-work-questions-for-beginners/
Therapy Intake: Questions Every Therapist Should Ask
https://positivepsychology.com/therapy-questions/
Designing for Progressive Disclosure | by G. L. | Prototypr
https://blog.prototypr.io/designing-for-progressive-disclosure-aabb5ddfbab4?gi=ceab8eeafcd0
The Peak–End Rule: How Impressions Become Memories - NN/G
https://www.nngroup.com/articles/peak-end-rule/
Forge-Doctrine.md
file://file-7sjeXMNFzMNoDzMyhBYQAn
The Zeigarnik Effect and its Design Implications | by Emily Caruso | Medium
https://ecaruso01.medium.com/the-zeigarnik-effect-and-its-design-implications-a525e3e996ac
How to Build More Successful Paywalls — Sylvain Gauchet | Sub Club Podcast
https://subclub.com/episode/how-to-build-more-successful-paywalls-sylvain-gauchet
•
8
7
•
16
•
19