-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreal-startup-book-jp
1523 lines (1205 loc) · 107 KB
/
real-startup-book-jp
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
リアルスタートアップブック
コピーライト
Version 0.3
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
これまで失敗して
それを認めることができる
度胸のある
すべての人たちすべてに
# 著者による前書き
「カナヅチをもつとすべてがクギにみえる」– 不明
私の「リーンスタートアップ」との出会いでスモークテストのコンセプトを知りました。
そのアイデアはエレガントで、ランディングページで価値を説明して顧客ニーズを測るというものでした。
当然ながら自分ですぐに試しました。
ショーン・エリスの「これが無かったらどれくらいガッカリ」アンケートも試しました。
コンシェルジュテスト、オズの魔法使い、ペーパープロトタイピング。全部試しました。
深く考えることなく、とにかくやってみました。
それしかわからなかったからです。
私の知っている人がそれについてブログや本やスライドで書いていたから。
今から考えれば「エアジョーダンをはけば素晴らしいバスケットボール選手になれる」と同じくらい間違った論理だったけど、その時はとにかくやってみました。
6年間リーンに生きて何を作るのに何が必要なのか気が付きはじめました。
素晴らしい何か、不変な何か、優れた大工になるためにエアジョーダンは必要ではありませんでした。
道具箱が必要で、その道具の使い方を知ることが必要でした。
序章
「リアルブック」とは?
ジャズのジャムセッションで必ずある本があります。『リアルブック』です。
まともなミュージシャンなら必ず持っています。
大きくて手で書いた楽譜をコピーしたみたいに不格好にバインダーで無造作に束ねられています。
それぞれのページはジャズのスタンダードです。
マイルス・デイビスの”All Blues”、ジョン・マーサーの”Autumn Leaves”、ディジー・ガレスピーの” A Night in Tunisia”...フランク・ザッパの”Peaches in Regalia”みたいな変わった曲もあります。
ほかの「フェイクブック」みたいに詳しい弾き方や指運びは説明していません。『リアルブック』にあるのは音符、リズム、コード、メロディーラインといった必要最低限のことだけです。ミュージシャンがジャズをジャズらしくするためのアドリブをする余地があるくらいの。1
それは天国です。
『リアルブック』は「この曲はどう弾く?」というシンプルな質問に答えています。
ミュージシャンの仕事が音楽を演奏することだとしたら、スタートアップのプロダクトマネージャーの仕事は実験と調査です。
私たちの仕事は想定に挑戦して、仮説を検証することです。
私たちはまだ答えのない質問があり、その答えは現実世界の現実のユーザーが持っています。
その答えを実験と調査から導き出します。
1 もちろん、『リアルブック』が実際には違法だったことを後で知りました。いまでは合法に出版されています。
この『スタートアップリアルブック』のゴールは「ビジネスモデルをどう学ぶか」というスタートアップのシンプルな質問に答えることです。
自らのビジネスでわからない部分やスタートアップのビジネスモデルについての答えを導き出す実験と調査の方法があります。
この本はどの方法が何を探すのに最も最適なのか、独自の状況、産業、国やビジネスモデルに合わせて調査するために最低限の情報を提供しています。
過度に教義的ではなく、アレンジするのに適切な余白を残しています。
この本はテキストではありません。この本はハウツー本でもありませんし「フェイクブック」でもありません。参考書です。
取って置き、参照し、必要な時に手元に置きましょう。
もっと大事なのはこの上にノートを書くこと。変えたい部分は変えること。何か間違えがあったら変更点[email protected]まで。
提案があったら連絡してください。もっといい方法があったら教えてください。(日本語版は[email protected]まで)
この本は継続的に改善して共有するためにクリエイティブコモンズのライセンスで公開されています。問題点を探して改善するためのご協力をお願いします。
だれがこの本を読むべき?
自分のビジネスモデルに大きな穴があり、どうすればその穴を埋めるのかわからない場合、この本はあなたのためにあります。わからないことはこんなことです。
- 顧客はだれ?
- 最も重要な機能は何?
- なんでユーザーはそんなことをするの?
- ユーザーはこれに本当に対価を支払う?
この本は一部または全くわからないイノベーションプロジェクトを管理するのにも便利です。あなたの役職は:
- プロダクトマネージャー
- スタートアップの創業者
- 企業内のイノベーションプロジェクトリーダー
過去の経験
以下のコンセプトの理解がある:
- リーンスタートアップ
- ユーザーエクスペリエンス
- 人間中心デザイン/デザイン思考
- ビジネスモデルキャンバス
知らなくても大丈夫ですが、知っていたらもっと理解が深まります。
特に必要なのはビジネスモデルには見えない部分があり、それを見えるようにするには実際のユーザーで実験や調査をしなければいけないと理解していることです。
イノベーションをスケールさせる
この本は多くのイノベーションを管理する立場の人にも特に有効です。
例えば:
- チーフ・イノベーション・オフィサー
- イノベーション担当役員
- アクセラレーターのマネージャー
- リーンスタートアップ/イノベーションコーチ
もしこれらに当てはまるのであれば、この本はイノベーションやスタートアッププロジェクトにとってとても使いやすく簡単な参考書となるでしょう。
そのほかにもスタートアップが持つ典型的な問題を診断するためにも使えます。
これはクリエイティブコモンズで公開されているため、トレーニング資料として無償で利用することもできます。
ビジネスモデル
この本はビジネスモデルの要素に関する質問に答えるのに最適です。
ビジネスモデルの要素とは顧客、価値、チャネル、関係や売上です。つまりプロダクトマーケットフィットに決定的に必要な要素です。
パートナーやリソースといったほかのビジネスモデルの要素を調査するのにも使えますが、読者が独自に解釈をする必要があります。
ステージと産業
ここにある方法はスタートアップやこれまでとは違うモデルのビジネスを模索する大企業の事業開発チームが使うのに適しています。
どの産業でも適応することはできますが、テクノロジー分野で蓄積された手法が多く含まれています。ほかの産業での事例が増えてくればここに掲載する予定です。
[email protected] まで事例のご連絡をお願いします。
注意:アカデミックと既存ビジネス
この本は学校の環境で学ぶ生徒のためではありません。
この本から学ぶには外に出て実際の世界で実際の顧客に対して活用する必要があります。
\もし先生がこの本をあなたに手渡したら、教室から飛び出して顧客と対話してください。
この本はすでに既存のビジネスを運営している企業のためでもありません。
ここにある手法のいくつかは既存のビジネスを最適化するのに有用かもしれませんが、そのために作られてはいません。
伝統的なプロジェクト管理手法のほうがマッチしているかもしれません。
継続的な改善
将来の改善はこの本のフォーカスを広げる可能性があります。この本は生き物のように常にアップデートしていきます。
この本の使い方
この本を最初から最後までストレートに読まないでください。インデックスをまずよく読んで適切なページに進んでください。
この本はステップ1、ステップ2、ステップ3のようなスタートアップガイドではありません。スタートアップはそのようにできません。
この本を道具箱だと考えてください。
道具箱は必要な時に必要なものが見つかるように整理されています。
マーケットの需要を調べる時は「マーケット評価実験」のセクションがあります。
MVPで評価すべき機能リストが増えすぎて優先順位をつけなければいけない時は「生成的プロダクトリサーチ」のセクションがあります。
この本のインデックスはアルファベット順でも時系列でも存在論でもありません。
インデックスは知る順番で整理されています。
顧客のことを知ろうとしていますか?
適切な価格を知ろうとしていますか?
リテンションをどのように上げるか知ろうとしていますか?
インデックスをよく読むことを強くお勧めします。
そうしないとこの本の大きなメリットを見逃すことになります。
自身のビジネスモデルで未知の部分に対するとき、まずは何を知らなければいけないのかを学ばなければいけません。
それを知ることのゴールは何か?どのような質問をしなければいけないのか?
何を知らなければいけないかがわかったら、インデックスを使って適切な調査や実験を探しましょう。
それぞれの方法について読んで自分の環境やリソースに適した方法を決めましょう。
方法についての各ページにはいくつかの見出しがあります:
概要
2,3行の簡潔な説明。
期待できる答え
その方法が答えを導き出してくれるであろう質問のリスト
タグ
この本を通じてナビゲーションとして使える単語のリスト。
たとえば「B2B」(B2Bのビジネスモデルでよく使われる方法) や「質的リサーチ」 (その方法で使われるデータの種類)など。
解説
その実験や調査が実際に使われる際の詳しい解説:
- 必要な時間
- 実施方法
- 結果の解釈の仕方
- 正しくないデータによって結果が出ないよくあるバイアスや落とし穴
- 実施した人からの助言
事例
その実験や調査を使った様々な事例のリンク
参考
参考となる情報リスト
Contributors
- Andy Cars, Linkedin, Lean Ventures
- Austin Elford, Linkedin, Twitter
- Casey Sakima, Portfolio, Linkedin
- Dharanidhar Malladi, Linkedin
- Gian Tapinassi, ArtDigiland, Linkedin
- Gillian Julius Linkedin
- Hameed Haqparwar, Linkedin, @haqparwar
- Jan Kennedy, Academy for Corporate Entrepreneurship, @innovationmojo
- Jorge Castellote, Linkedin, Twitter
- Lino Jimenez, Linkedin
- Luke Szyrmer, LaunchTomorrow, @launchtomorrow
- Luuk Van Hees, Linkedin, Tippiq Labs
- Jason Koprowski, Effortless Growth, Linkedin
- Kenny Nguyen, TriKro LLC, Linkedin
- Nadya Paleyes, Linkedin, Red Button
- Phyo Pine, LinkedIn
- Rammohan Reddy, LeanMantra, Linkedin
- Sean K. Murphy, Linkedin, SKMurphy
- Thierry Dagaeff, Linkedin
- Tristan Kromer, TriKro LLC, Blog
Update History
- Version 0.3 - Updated book’s formatting, added Customer Discovery Interviews and merged with Customer Discovery, added Secondary Market Research, added Concierge Test, added Net Promoter Score, added Appendices and Biases
- Version 0.2 - Updated Generative vs Evaluative (1.3), added Generative Market Research sections 1-3, added Evaluative Market Experiments sections 1-4, added Generative Product Research sections 1-3, added Evaluative Product Experiments sections 1-2, added Out of the Box sections 1-2
- Version 0.1 - Added Preface sections 1-3, added The Index sections 1-6
インデックス
“An index is a great leveler”
– George Bernard Shaw
何を学ぼうとしているのか?
「もし課題を解決するのに一時間あったなら、55分を課題に使い、5分を解決方法に使う」- アルバート・アインシュタイン
学校ではどれくらい理解ができたのか定期的にテストをします。地理を学び、歴史を学び、九九を暗記します。
残念なことに暗記のスキルや公式で答えるやり方はスタートアップでは通用しません。
新しいビジネスモデルを作り上げるとき、テストやクイズのための暗記は役に立ちません。
期末試験で全く空白の紙が解答用紙として配られるようなものです。
「テストはどこですか?」
「目の前にあるよ」
「正しい答えはあるんですか?」
「ありますよ」
「質問は何ですか?」
「それを理解しないといけません」
起業家(または社内起業家)として「正しい質問」を理解せずに、単に答えを推測することはできません。
推測だけでプロダクトの完成品を作っても、マーケットは見向きもせず売り上げゼロで破産の罰を受けます。
私たち起業家の仕事は最初に正しい質問をして、それから正しい答えを探すことです。
何が正しい質問なのか?
質問はビジネスモデルが持つ根本的な穴に光を当てるものでなければいけません。たとえば:
- 顧客はだれ?
- 彼らがしなければいけないことは何?(Jobs to get done)
- どのチャネルを使えば顧客にリーチできる?
- どの機能を最初にプロダクトに実装する?
- ソリューションは十分によいか?
「正しい質問」を見つけることができれば、その解を見つける手助けをしてくれる方法をこの本から見出すことができるかもしれません。
リソースや時間の制約もありますし、いくつかの方法はより簡単に実行できるかもしれません。
もし「正しい質問」を見つける前にこの本にある方法を実行しても不可能とは言わないまでも、実験の結果の解釈はより困難なものとなります。
例えば足底筋膜炎を治すことができる新しい靴を売るとしましょう。
ランディングページ(スモークテストの一種)に価値訴求のメッセージと「今すぐ購入」ボタンを設置します。そして1000ドルを使ってGoogle Adwordsに「靴」をキーワードとして広告を載せます。
そしてお金がチャランチャランと入ってくるのを待ちます…
…がコンバージョンは0%でした。
ここであきらめますか?それがランディングページのテスト結果です。
このプロダクトには需要がない。でも、そもそも「足底筋膜炎」ってなんでしょう?
その通り、それがこのサイトに訪れた人が持つ疑問です。
テストの失敗は顧客が興味を持たなかったからでしょうか?
それとも価値が理解できなかったからでしょうか?
それとも間違った流通経路を選んでしまったんでしょうか?
この場合、「誰かこのプロダクトを必要とするか?」というのは正しい質問ではありませんでした。
正しい質問は「顧客は足底筋膜炎を理解するか?」か「誰がこのプロダクトの顧客なのか?」ではなかったでしょうか。
質問にフォーカスする
正しい方法を探すことをシンプルにするため、二つの質問を用意しました:
1. あなたの知りたいのはマーケット?それともプロダクト?
2. あなたは仮説を検証したい?それともアイデアをクリアにしたい?
この二つの質問を組み合わせることで2×2のマトリックスができます:
たとえば、顧客に関する明確な仮説があるとして、プロダクトに対価を支払うだろうと考えているとします。
その場合はスモークテストのような評価的なマーケットテストが有効です。
顧客に関する明確なイメージがない場合はデータマイニングのような生成的マーケットリサーチが有効です。
同様に、どのような機能が顧客の課題を解決するか明確な仮説がある場合、オズの魔法使いのような評価的なプロダクトテストが有効です。
どんな機能が有効なソリューションとなるのか明確なアイデアがない場合はコンシェルジュプロダクトのような生成的プロダクトリサーチが役に立ちます。
どのようなフレームワークも現実を過度にシンプルにしたものです。
このインデックスは正しい方法に簡単に導いてくれますが、全く考えなくていいというわけではありません。
質問のインデックスと方法のインデックスは質問のリストと対応する方法を見つけるのに役立ちます。
しかし、まずプロダクトとマーケット、そして生成的と評価的の違いを見ていきましょう。
マーケットとプロダクト
私たちはマーケットやプロダクトについて知る必要はあるでしょうか?
膨大なリストから行動ができるくらいの選択肢に絞るため、質問をマーケットに関するものとプロダクトに関するものに分けます。
マーケット
- 顧客はだれ?
- 彼らの課題は何?
- どんなジョブをしなければいけない?(Jobs to be done)
- 現在はどうやってそのジョブを実行している?
- すでにこの課題を解決するソリューションはある?
- この顧客セグメントはこのジョブを実行できるより良いソリューションに対価を払う?
- 顧客セグメントは広すぎる?
- どのように顧客を見つけられる?
- この顧客セグメントはいくらなら払う?
- どのようにすればこの顧客セグメントは払う?
- この顧客セグメントを獲得するコストは?
プロダクト
- どうやったらこの問題を解決できる?
- どのような形であるべき?
- このデザインはどれくらい重要?
- 何が一番手っ取り早い解決策?
- 何が必要最低限の機能?
- どうやって優先順位をつける?
- このソリューションで本当に問題解決する?
- みんな使ってる?
- どっちがより良いソリューション?
- どうやったら最適化できる?
- みんなは何が好き/嫌い?
- なんでこうするの?
- なんで潜在顧客はこれを買うの?
- なんで潜在顧客はこれを買わないの?
この場合「マーケット」は顧客セグメントを指す要素です。
これは正しい方法を選択するためにかなりシンプルにしたやり方です。
例えばマーケットの質問は私たちが顧客セグメントにリーチするチャネルを含みます。
テレビを持たない顧客セグメントにテレビを使った伝統的なブロードキャストアウトリーチを使うことはできません。
「プロダクト」(またはサービス)は価値または価値を生み出す手段です。
これには価値を生み出すリソースや活動、パートナーにコストなどが含まれます。
価値はマーケットとプロダクトの間にあります。
プロダクトは顧客に利用されなければ何の価値もありません。
しかし、これも正しい方法を選択するためにかなりシンプルにしたやり方です。
ビジネスモデル・キャンバスで「マーケット」の質問は顧客、チャネル、関係、売上などキャンバスの右側についてです。
「プロダクト」の質問は価値と活動、リソース、パートナー、コストを含むキャンバスの左側です。
どこからはじめるか?
この本ははじめる場所を問いません。
すでにプロダクトがあって顧客を探しているかもしれません。
顧客のペインポイントがわかっていて、それを解決するソリューションを探しているかもしれません。
しかし、迷ったら顧客からはじめましょう。
顧客セグメントが変化した場合、プロダクトは顧客の変化に対応しなければいけません。
しかし、プロダクトが変わっても顧客は単に違うプロダクトを使うだけです。
人間の行動はなかなか変わらないことで知られています。
生成的か検証的か
クリアな仮説を検証したいのでしょうか?それともクリアな仮説を生み出したいのでしょうか?
この判断をするためには何がクリアな仮説なのかを理解する必要があります。
顧客は私たちのプロダクトを望んでいる
この仮説はいくつかの理由で悪い仮説です。
類語反復で検証する価値がありません。
もしすでにそのプロダクトを使っているのであれば、すでに購入した(=望んでいた)ことを意味するので、それはすでに良い兆候です。
これはほぼ「紙は可燃性で、発火すれば燃える」と同じです。
このような間違った仮説は多く見受けられます。
もう少し微妙な例を見てみましょう:
もし250人のロスアンゼルスの教師にマイノリティーの生徒にもっとリスペクトをもって接するように言えば、少なくとも50人はそうする
最初の例よりは悪くないですが、良い実験を行う上で基本的な問題があります。
もし無理に実験を行ったとしても不明瞭なデータを得られるか、データを正しく解釈できないでしょう。
この場合、いくつかの点がクリアではありません:
- どの先生でしょうか?何人くらいのマイノリティーグループがいるクラスの先生でしょうか?
このテストではどれくらいのマイノリティーグループがいれば適切なのでしょうか?
- 先生にはどのように言えばいいのでしょうか?それぞれの先生に別の言い方をする?校長先生に言ってもらう?
- 「リスペクト」とはどのような状態でしょうか?どのような行動が「もっとリスペクトをもって接する」ことになるのでしょうか?
仮説を明確に定義しないと、私たちは校長先生は先生たちにいろんな形でお願いをしてしまうかもしれません。
また、結果についても疑念が残ります。
たとえば名前でなくMr付きの苗字で呼べば「リスペクト」になるのでしょうか、それとも皮肉なのでしょうか?
クリアに定義された検証ができる仮説がないとき、実験とは言えず、それはよくて「生成的」なリサーチにしかなりません。
その場合、ゴールは「どのような行動が先生がマイノリティーグループの生徒に対するリスペクトとなるか」を理解することになります。
このようなゴールの場合、生徒に対するカスタマーディスカバリーインタビューが適切な方法となります。
先生に対してあいまいな仮説の検証ではなく。生成的リサーチの結果はクリアで検証が可能な仮説です。
その仮説をもって検証的実験を行うことができます。
よい仮説を作るのは簡単ではありません。以下がいい仮説を作るためのチェックリストになります。
シンプルで明快
仮説はシンプルで明快でなくてはいけません。
誰が読んでもコンテキストを理解でき、結果を明確に解釈することができます。
もし250人のロスアンゼルスの教師にマイノリティーの生徒にもっとリスペクトをもって接するように言えば、少なくとも50人はそうする
この場合、「リスペクト」に関して様々な解釈があります。誰かが「もっとリスペクトをもって接した」とするには、どのような行動が「リスペクト」を示すのかを明確にしなければいけません。
“もし250人のロスアンゼルスの教師にマイノリティーの生徒にもっとリスペクトをもって接するように言えば、少なくとも50人は敬称を使うことでそれを示す。
たしかに具体的になりましたが、すべての人が敬称の意味が分かるわけではありません。特別な言葉やジャーゴンは避けるべきです。
もし250人のロスアンゼルスの教師にマイノリティーの生徒にもっとリスペクトをもって接するように言えば、少なくとも50人は名前ではなく苗字にMr/Msをつけて生徒をよぶようになる。
測定できる
私たちの顧客はチャリティーのために募金をする強い欲求がある
この仮説は正しいかもしれませんが、観察することができません。
テレパシーを使わない限り。
私たちの顧客はチャリティー二年に二回募金する
この新しい仮説も多少問題があるものの観察は可能です。
関係を説明している
ダルトンハイスクールではCまたはそれより低い成績を取る生徒が50%一年一クラスに少なくともひとり存在する。
この例も正しいかもしれませんし、観察することもできます。
低い点数の原因について説明していません。よい仮説は何かを変えれば別の結果として観察をすることができます。
ダルトンハイスクールのなかで一週間で4週間未満勉強する生徒でCまたはそれより低い成績を取る生徒が一年一クラスに少なくともひとり存在する。
原因と結果
夏にアイスクリームの売上が増え、一日当たりに溺れる人も増える
この例も正しいかもしれませんが、二つの変数の因果関係が説明されていません。
アイスクリームを食べすぎて溺れるのでしょうか?それとも、溺れている人が多いのを悲しんでアイスクリームを食べる人が増えるのでしょうか?
夏にはアイスクリームを食べる人は食べない人と比べて溺れる確率が高い
この例では原因と結果の関係が明確になっています。
さらに「もし、れば」を使うとさらに明確になります。
もし人にアイスクリームをあたえれば、一日当たり溺れる人の平均数は増える
実現性
ブラックホールの安定軌道上の宇宙飛行士がブラックホールの事象の地平面に足を延ばせば体全体を引っ張られるでしょう
多くの理論物理学者が現時点では検証できない仮説を作ります。
しかし、将来的には検証ができるようになるかもしれません。
この宇宙飛行士とブラックホールの仮説は理論的に検証することができるかもしれませんが、実際にテストすることはできません。
残念ながら起業家は現在のリソースと時間で実現できるテストに集中すべきです。
[注意:多くのことはテストできないように感じられるかもしれませんが、リーンスタートアップを賢く使えばテストができるまで簡単なものに絞り込むことができることを忘れないように!]
検証可能
これまで解説してきたポイントをおさえれば検証可能な仮説になります。
反証ができずに仮説が正しいだけでなく間違っていたことも証明できなければテストする意味はありません。
地球と火星の間に透明なティーカップが浮かんでいる
自信がない場合は「どのような証拠で仮説は間違いだと証明されるだろう」と自問をしてみることです。
もし仮説が否定されたという十分な証拠がない場合、仮説が間違っているか自分たちがとっても頑固なのかのどちらかでしょう。
そのほかのフレームワーク
仮説をチェックするフレームワークはこれ以外にもたくさんあります。
そのうちの一つはとても有名なので混乱を避けるためにも紹介しましょう。
私たちは<機能>は<結果>を生むと信じます。私たちは<測定可能なシグナル>により、それが成功したとわかります。
この文章全体は仮設ではありません。
部品に分解してどれが仮説なのかを見ましょう。
私たちは...と信じます。
この部分は仮説が正しいと思ってると宣言しているだけです。この部分は仮設ではありません。仮説が正しくないと信じるときもあります。
<機能>は<結果>を生む
これが仮説です。
私たちは<測定可能なシグナル>により、それが成功したとわかります。
これは私たちが集めなければいけないデータです。それはサンプルサイズやえらーち、成功の条件と失敗のクライテリアを含みます。
仮説チェックリスト
- シンプルで明快ですか?
- 測定できますか?
- 二つの関係を説明していますか?
- 因果関係は明確ですか?
- 実現できますか?
- 反証できますか?(仮説を否定できますか?)
質問のインデックス
マーケット
プロダクト
生成的
顧客はだれ?
顧客のペインポイントは?
お客がやるべきことは?
お客セグメントが広すぎる?
顧客はどうしたら見つかる?
どうしたらこの問題を解決できる?
どのような形がいい?
デザインはどれくらい重要?
何が一番簡単なソリューション?
何が最低限の機能?
どうやって優先順位をつけたらいい?
検証的
顧客は喜んで払う?
いくらなら払う?
どうしたら買ってもらえる?
売るためのコストはいくら?
マーケティングをスケールできる?
このソリューションはうまくいく?
ユーザーは使ってる?
どっちのソリューションがいい?
どうやって最適化する?
ユーザーは何が気に入ってる?
なんでユーザーはそうするの?
手法のインデックス
マーケット
プロダクト
生成的
カスタマーディスカバリーインタビュー
コンテキストインタビュー
エスノグラフィー
データマイニング
フォーカスグループ *
アンケート * (オープンエンド)
ソリューションインタビュー
コンテキストインタビュー / エスノグラフィー
デモピッチ
コンシェルジュテスト / コンサルティング
競合のユーザビリティ
墓場でピクニック
検証的
5秒テスト
聞き取り
コンジョイント分析
データマイニング/マーケットリサーチ
アンケート * (クローズド)
スモークテスト
(例:ビデオ、ランディングページ、セールスピッチ、プリセールス、チラシ、イベント、フェイクドア、ハイバー)
ペーパープロトタイプ
クリックできるプロトタイプ
ユーザビリティ
ホールウェイ
ライブ
リモート
オズの魔法使い
テイクアウェイ
動くプロダクト
分析 / ダッシュボード
調査 *
(例:NPS, PMFサーベイなど)
タグとそのほかのフレームワーク
推測されるリスク、仮説や質問を明確にして優先順位をつけるための素晴らしい手法、書籍、フレームワークはたくさんあります。
このインデックスはタグを使うことでそれらの手法と組み合わせて使うことができます。
すべての手法にはタグ付けがされ、ほかのフレームワークが使っているかどうか探しやすくなっています。
This includes simple tags such as qualitative or quantitative used to denote the type of information that the method produces.
It also includes tags related to the type of business model, such as:
― B2B - For Business-to-Business
― B2C - For Business-to-Consumer
― B2G - For Business-to-Government
― 2-Sided Market - For a business with buyers and sellers.
Using these tags to navigate the methods is not as simple as using the Index and may result in a large selection of methods not entirely suited to the learning goal, but can be helpful to further narrow down the methods, so we’ve included them.
Using the Business Model Canvas
The Business Model Canvas is a very popular framework that identifies 9 basic building blocks of any business model and asks us to make assumptions as to what our business will be. Those blocks are:
Based on our completed canvas, we choose the area of greatest risk to our success. Sometimes this is the Customer segment, but in the case of an existing market it may be the Value Proposition, Channels, or even Key Partners.
Each method in this book tagged with these blocks. If we can identify the greatest risk to our business model via the Business Model Canvas, we can search the tags for a complete list of experimental methods relating to that building block.
For example, if the Customer is the biggest risk to our customer segment, then we are asking “Who is our customer?” or “Is this our correct customer segment?”. Based on that, there are several tools available to learn more about our customer, including:
● Customer Discovery Interviews
● Ethnography
● Data Mining
● Surveys (close ended)
● Focus Groups
This won’t differentiate between Generative Research and Evaluative Experiments, so you’ll still need to take that extra step.
Generative Market Research
“Advertisements may be evaluated scientifically; they cannot be created scientifically.”
– Leo Bogart
Customer Discovery Interviews
In Brief
Interviewing potential customers to gain insights about their perspective, pain points, purchasing habits, and so forth. Interviews also generative empathy between the customer and the entrepreneur to better aid the design and ideation process. The best interviews help narrow down the target market and provide a deep understanding of what causes a market need and the underlying psychology of the customer.
Helps Answer
● Who is our customer?
● What are their pains?
● Where can we find our customer?
Tags
● B2C
● B2B
● Qualitative
● Customer
● Channel
Description
Time Commitment & Resources
Typical rounds of customer discovery interviews require at least 5 separate interviews with individual customers but some entrepreneurs advocate as many as 100 before drawing a conclusion.
Time commitment can be as little as 15 minutes per interview for consumer products to 2 hour conversations for B2B sales.
The most significant investment of time can be in recruiting customers to interview which can again vary from a 5 minute walk to the local coffeeshop to a lengthy cold outreach program via LinkedIn in the case of an entrepreneur with no market access into a highly specialized vertical.
Costs are typically zero or very low. In many cases, interview subjects are offered a gift certificate for their time which can be anywhere from $5 USD to $50 USD.
How To
1. Plan the Interview
a. Define learning goal for the interviews
b. Define key assumptions about the customer persona
c. Create a screener survey of simple questions that will identify if the potential interviewee matches your target customer persona. Here’s a nice article on screener questions from Alexander Cowan.
d. Make an interview guide (not a write-and-strictly-follow script). If you don’t know where to start, check out some questions from Justin Wilcox or Alexander Cowan.
Something like this:
e. Prepare a handy template to put your notes in afterwards or check on the tools to record your interview (check first legal restrictions that may apply to recordings);
f. Prepare any thank you gifts, e.g. Gift cards
2. Conduct the Interview
a. Frame -- Summarize purpose of interview with the customer.
b. Qualify -- Ask a screener question to determine if the customer is relevant to your customer persona.
c. Open -- Warm up questions, get the customer comfortable talking.
d. Listen -- Let the customer talk and follow-up with “what” and “how” related questions.
e. Close -- Wrap up interview, ask for referrals or (if applicable) follow-up interview.
3. Retrospect the Interview
a. Make notes promptly, sometimes video or audio recording can be a great option.
Interpreting Results
Are you able to listen and record data based on the following?
● Job - What activities are making the customer run into the problem?
● Obstacle - What is preventing the customer from solving their problem?
● Goal - If they solve their problem, then ?
● Current Solution - How are they solving their problem?
● Decision Trigger - Were there pivotal moments where the customer has made key decisions about a problem?
● Interest Trigger - Which questions did the customer express interest in?
● Persons - Are there any other people involved with the problem or solution?
● Emotions - Is there anything specific that causes the customer to express different emotions?
● Measurement - How is the customer measuring the cost of their problem?
Potential Biases
● Confirmation Bias: The interviewer can be prompted to sell his/her vision in case the interviewees vision differs drastically. The interviewee is tempted in his/her turn to adjust answers to the interviewer’s expectations due to personal sympathy.
● Order Bias Sometimes the order in which you ask questions can affect the answers you get. So try to run questions in different order in different interviews.
Field Tips
● “Ask about the past. Observe the present. Forget about the future.” - @TriKro
● “Discovery Interviews - Focus on customer pain points and how they have tried to solve/fix them.” - @kennynguyenus
● “1st rule of validating your idea: Do not talk about your idea.” - @CustomerDevLabs
● “The harder customers are to interview, the harder they’ll be to monetize” -
@CustomerDevLabs
● “It's always handy to shut up for 60 seconds and let the interviewee talk.” -
@red_button_team
● Got a tip? Add a tweetable quote by emailing us: [email protected]
Case Studies
● Case study submitted anonymously via Lean Startup Circle Discussion thread
● How I Pivoted Product Strategy and Grew SaaS Deal Size by 10x
● How FindTactic validated hypothesis with customer discovery interviews
● Got a case study? Add a link by emailing us: [email protected]
References
● The Mom Test by Rob Fitzpatrick
● The Customer Discovery Handbook by Alexander Cowan
● How I Interview Customers by Justin Wilcox
● What are your favorite methods for doing problem interviews during Customer Discovery? by Quora
● 26 Resources to Help You Master Customer Development Interviews by Kissmetrics
● Bad customer development questions and how to avoid my mistakes by Kevin Dewalt
● Got a reference? Add a link by emailing us: [email protected]
Data Mining
In Brief
Data mining uses statistics from large amounts of data to learn about target markets and customer behaviors. Data mining can make use of data warehouses or big data.
Helps Answer
● Who is our customer?
● What are their preferences?
● How do they rank planned feature sets?
Tags
● B2C
● B2B
● Customer
● Quantitative
Description
Data mining can start with a result from a few questionnaires. However, it is more effective to use a large dataset. Identifying the source information (where you get the data) and extracting the key values (how you pick the data points) are two important aspects in getting the quality results.
Data mining is best used for pattern discovery in customer perceptions and behaviors. It is useful in understanding your customers and/or your target market.
For example, by using email campaigns and gathering the results, you can identify the profile of potential buyers or customers. This data point can help in your customer acquisition efforts.
By sending out customer satisfaction questionnaires or feedbacks, you can gather customer information. Alternatively, you can also track customer behaviors or mouse clicks on your websites. By combining these two data points, you can determine customer behavioral links between reported satisfaction and actual usage. This can identify key drivers for customer loyalty and churn.
Time Commitment
Depending on the amount of data that you need to crunch and data points that you want to discover, it will take 2-3 hours to a few weeks. You should pick one or two most important data points to start the learning process.
How to
You can either acquire outside (industry or market) data or distill your own (customer or product) data. Once you identify the area that you want to test:
1. Acquire data (integrate from various sources, if required)
2. Identify data points (determine which data or information is relevant to the research)
3. Transform and extract data (many tools to choose from business intelligent tools to database software with built-in reporting tools)
4. Recognize and search for patterns
5. Draw conclusions or refine the process by starting at step 2 (or sometimes even start back from step 1 to acquire better data).
Interpreting Results
In data mining, data matters but perspective matters more. There is a saying “Garbage In, Garbage Out.” But as human beings, we tend to see what we want to see and draw conclusions based on our own biases.
To counter these biases, you can:
1. Get outside help or another pair of eyes to help interpret the data
2. Get two data points that are counter to each other (in research methodology, that will be called the Control Group and Experimental Group)
Potential Biases
● Confirmation Bias
● False Positives
● Ignorance of Black Swans (rare and unprecedented events that can dramatically change or determine the future outcome)
Field Tips
● Got a tip? Add a tweetable quote by emailing us: [email protected]
Case Studies
● Data mining answers questions for startup businesses in Northwest Colorado
● Jaeger uses data mining to reduce losses from crime and waste
● MobileMiner: A real world case study of data mining in mobile communication
● Got a case study? Add a link by emailing us: [email protected]
References
● Data mining knowledge discovery
● Everything You Wanted to Know About Data Mining but Were Afraid to Ask - The Atlantic
● SPSS. (2005). Data mining tips
● Got a reference? Add a link by emailing us: [email protected]
Contextual Inquiry
In Brief
We’re not done yet!
Tweet us and we’ll write this chapter:
Hey, @realstartupbook, please write the chapter on Contextual Inquiry
Evaluative Market Experiments
“Life is an experiment in which you may fail or succeed.
Explore more, expect least.”
– Santosh Kalwar
Secondary Market Research
In Brief
Secondary Market Research gathers and interprets available information about the target market such as published reports, newspaper articles, or academic journals. This method is used to figure out the size of the market or customer segment, pricing, and possible ways for the market to evolve. Secondary Market Research, also referred to as “Desk Research”, or “Market Study,” is always from 3rd party sources and there is no direct customer contact.
Helps Answer
● How much would our customers pay (what should be the price of our product)?
● What is the size of the market (how many customers would be using our product, how many would be paying customers)?
● How much would it cost to sell (what are the marketing channels and their exploitation costs)?
Tags
● B2C
● B2B (studies of industry sectors)
● Quantitative (but simple figures)
● Marketing Channels
● Segments
Description
This method does not refer to primary research such as Customer Discovery Interviews, Focus Groups, Surveys, and so forth. This form of Market Research is commonly referenced as Secondary Research, that is “simply the act of seeking out existing research and data.”
As the data from secondary research cannot be easily verified and may come from a variety of sources, it is theoretical rather than experimental. Some would consider the data qualitative rather than quantitative because the researcher must factor in the quality of the data source to any conclusions.
The goal of Secondary Market Research is to use existing information to derive and improve your research strategy prior to any first person research. Often, existing market research can help determine rough market sizes and determine if first person research is worth the effort. With existing markets, a great amount of information can be found online or purchased from market research consultants.
Secondary Market Research can be performed for any market but is most often performed for companies targeting existing markets. For startups creating new markets, typically there is no information available.
We distinguish it from Data Mining, which is about exploiting big data sets (existing or generated by yourselves) which are numerical in nature so that they can be automatically processed and plotted. We also distinguish it from Picnic in the Graveyard, which is about regarding existing or deceased products in the market rather than the market itself.
A first step is to find the relevant reports. Another step is to analyse them in a way that allows you to learn something on your product or idea.
We can distinguish two directions of research. In “Market Status” research, you look at:
● User Behaviors: How often users have to use similar product, in which circumstances (not to confound with user behaviors regarding specific products which is covered by the Picnic in the Graveyard method).
● Marketing: What are the typical channels used? What are the costs of opening and maintaining such channels?
● Current Technology: Benchmark technology to understand what kind of standards have been set regarding speed, accessibility, etc..
Identifying relevant reports will help derive target population size, prices and costs, hence, your revenue.
In “Trend Research” you look at:
● User Behaviors: What new user behaviors are emerging?
● Marketing: What new channels start being used in this area?
● Technology: What coming technology may disrupt the market and our own approach?
This helps deriving the possible evolution of your revenue and avoid pitfalls, or even give new ideas (as a Generative Method then).
A typical use of Market Research is to develop a first idea of the target population itself. For instance, you may want to know if your product would rather be used by teenagers or by young adults. Imagine your product is a Facebook app. There are numerous reports about growth of distinct Facebook population segments and their respective habits; hence you can find if your type of product can meet young or older facebook users, and you can also see if this segment is growing or diminishing.
Time Commitment
When performed for a particular occasion (in order to answer a specific question about a market size for instance or in order to get a first big picture at the beginning of the project), it may take from 1 to 3 days, depending on the difficulty to gather relevant information and of the abundance and thus filtering of obtained information.
How To
You will find information and existing surveys out of libraries, professionals associations, or business groups (you, your friends or your employees may be members of various engineers and/or trade associations -- Use It!). You can find information in professional fairs. You may also look for general information in the area you are targeting. For instance imagine you have a product for sailing boats; then, you can find a lot of publications on sailing. This is a good way to get insight on user behaviors and especially on trends. But you have to sort out this abundant literature.
Governments provide statistical information on the population that can be quite detailed. For instance the EU publishes information on various segments, by gender and age; you can find data about household income and about some general practices, e.g. the use of public transportation, the expenditures in health system, etc.
In order to get information that is relevant to your specific questioning, i.e. to the current status of your idea/product development, you have to be specific. For instance if you want to launch a service that enforces some privacy when publishing images on the Internet, you have to look beyond the population of people that publish images on the Internet (which is extremely huge). You have to figure out who is interested in privacy, who takes it seriously;
and this is not necessarily just a subset of the first population because there can be people who do not currently publish any image just because they fear some privacy issues.
To be specific, you have to be smart or even crafty. For instance you may exploit annual reports from corporates which may include interesting facts about their own target segment, embedded within the description of how their products are doing. Another trick is to use some tools that are primarily made for other purposes. For instance, by trying to promote something on Facebook (a post, a page, or an app), you can define an ad campaign; then, Facebook provides you with tools to target your population (gender, age, device - iPhone or Android - and interests), and then it displays information about the potentially reached population which in turn gives you an idea of its size. You do not need to actually launch the campaign and pay for this.
Beyond the search on the Web, information can be seeked directly by asking some organizations. There are the statistical offices. Public and nonprofit organisations may also be willing to share data, like hospitals, transportations systems, etc.
Research into competitors is also a source of information. Not just the competitor product, but also his users, marketing channels, prices and costs (or producing methods). Here again, it can be quite a Generative method as well as an Evaluative one, for instance in indicating how you could, and when you should, differentiate your product.
Interpreting Results
Trend analysis and the derivation of the evolution of the market size and related revenue may be quite extrapolative. You may resort to complex theories and skills such as Behavioral Economics Models. However, we want to keep it simple here and let the most space for actual experiments. Hence, you should use results in order to get a first idea of the market, to detect and qualify niches, and have a broad idea if the market is worth investing a first and lean effort (remember you are lean and your goal is not to decide if the revenue is 5 years is proving once for all that your investment of 10 millions now is a good idea!). Qualitative results are used to stay smart and aware, to avoid missing a massive fact like a disruptive trends (for instance when you want to launch a camera service to capture racers while
self-piloted tracking drones are emerging…).
Mainly, use results to derive your own surveys and data/learning generation.
Besides, results may be useful to talk to investors who are still requiring more traditional business plans and market research-like homeworks. To some extent here we can consider being more extrapolative in the interpretation of the results.
To counter biases:
● Target specificity of your business rather than data for the generic domain..
● Take into account conversion mechanisms.
● Take into account scale, niche factors, and regionality.
Potential Biases
False positive will often be due to a lack of specificity in your research to accurately represent your own business. For instance, it is easy to get huge numbers for potential users of a image publication app, while the specificity of the service you have in mind (e.g. to protect privacy or to enforce copyrights) will drastically decrease the numbers.
False positive are also due to the scale of markets that are described by the survey you use. Most often, surveys describe wide international environments while you will tackle regional markets, or niches inside this market. The mechanisms that result in the described market may be different at your own scale.
Confirmation biases are often obtained by suddenly importing an unfounded ratio in your population estimate that actually make the result of the whole exercise fanciful. Indeed, you have to consider the size of the population you will actually acquire out of the target population which depends on the competition (including indirect solutions) and on your marketing channels. If you omit the conversion rate, or use a too whimsical conversion rate, your results will be all too optimistic. One of the goal of Market Researches by the way is to try to get a documented and realistic conversion rate. So it is important not to just figure out the size of a population having a given problem, but also to understand what part of this population is typically following such or such marketing channel, and what part will do so in the future.
Field Tips
● “When looking at available market surveys, take into account your product specificity” @tdagaeff
● Got a tip? Add a tweetable quote by emailing us: [email protected]
Case Studies
● Secondary Market Research versus Primary Market Research
● Example: Association Providing Links for Business in a Specific Area - Queensland, Australia
● Got a case study? Add a link by emailing us: [email protected]
References
● Marketing Donut, General Description of Market Research
● Market Research Methods, Market Research vs. Direct Research
● Know This, Type of Research Types by Decision Types You Have to Take
● Entrepreneurship.org, Secondary Market Research Resources
● SBA.gov, Free Sources: Market Data and How to Use Data for Business Planning
● Census.gov, US Census Historical Data
● European Commission, Consumer Market Studies
● US Commercial Services, Market Research Library
● Cornell University, How Can I Find Market Research Data
● Got a reference? Add a link by emailing us: [email protected]
Comprehension Test
In Brief
A Comprehension Test will evaluate whether the customer understands the marketing message explaining the value proposition. This eliminates a possible false negative bias on smoke tests where the customer indicates they do not want the value proposition when they actually do not understand it.
Helps Answer
● Does the customer understand the value proposition?
● How could we explain the value proposition better?
Tags
● Quantitative
● Qualitative
● Value Proposition
● Smoke Test
Description
Time Commitment and Resources Required
For B2C, it can take 1-2 hours offline or 24 hours online. For B2B, participant recruitment times can vary widely. 10-20 participants.
How To
1. Write out value proposition in 1-3 sentences.
2. Show the value proposition to a participant for a few moments, then remove it.
3. Ask them to explain the value proposition in their own words from memory.
Interpreting Results
If the participant’s explanation is roughly comparable to our own, we count that as a positive result. If not, then it’s a negative. For this sort of test, we generally want a sample size of about 20 people and a positive conversion of about 80%.
The conversion has to be very high because regardless of what our value proposition is, people should understand it.
Take note: if many of the participants use identical language to explain the value proposition back, it should be considered as possible alternative marketing messages.
Potential Biases
● Confirmation Bias
○ Overly enthusiastic entrepreneurs will sometimes over explain, correct, or nonverbally prompt the participant with the correct answer.
● Invalid Target Audience
○ Participants do not need to be the target customers, but they must have the same level of language & vocabulary as the target customer.
■ e.g. A junior marketing manager can be used instead of a Chief Marketing Officer
● False Negative
○ When using online surveys such as FiveSecondTest, the distractions of an online can often result in a higher than normal failure rate.
Field Tips
● “Run a comprehension test before a landing page test or you won’t understand why it doesn’t work.” @TriKro
● Got a tip? Add a tweetable quote by emailing us: [email protected]
Case Studies
● Got a case study? Add a link by emailing us: [email protected]
References
● Tristan Kromer - Comprehension vs. Commitment
● Pearson - Technical Report: Cognitive Labs
Smoke Test
In Brief
A smoke test is an experiment designed to test market demand for a specific value proposition. This test is often conducted before there is any ability to deliver the value proposition. The value proposition is presented to the customer in some way in exchange for any form of payment that would indicate true market interest. Payment expected from the customer may include money, time, attention, or data such as an email address.
Helps Answer
● Does this specific customer segment want this specific value proposition?
Tags
● B2C
● B2B
● Quantitative
● Value Proposition
Description
This is a general description for smoke tests as a category, for specific instances, please see individual sections:
● Landing page
● Direct sales
● Flyers
● Pocket
● Video
● Pre-sales
● Event
● High Bar
Time Commitment and Resources
Time commitment varies depending on market access and desired sample size. For consumer apps using a direct sales smoke test, tests can be done in hours. For enterprise B2B sales, smoke tests may take weeks or months. Typical landing pages tests usually take a week to gather a sufficient sample size to interpret the first results.
How To
1. Present the customer with a value proposition
○ The value proposition can be in any format including a landing page, sales pitch, video, or even a flyer handed out on the street.
2. Ask the customer for payment in exchange for that value proposition.
○ The payment can be of any form including money, time commitment (e.g. Get access in exchange for a one hour interview.), or data (e.g. email address or detailed personal information)
3. Measure the conversion rate of unique customers who are shown the value proposition to those that give payment.
Interpreting Results
Results can be difficult to interpret because of the high level of optimization that can be done with the form factor of the value proposition. Some landing pages can be optimized to achieve a 40% conversion rate without having a clear and understandable value proposition.
The criteria for success or failure of the value proposition should be set beforehand according to the criteria of the business model. For consumer web products which compete for user attention, payment of an email address at 20% conversion may be sufficient to justify additional investment in building the value proposition.
For enterprise hardware products, up front payment of tens of thousands of dollars by a single customer may be required to justify creating a first run prototype as a customer solution.
Success or failure criteria also need to account for the ability of the marketing channel to deliver a highly targeted customer segment. High quality channels with the right value proposition can deliver conversion rates >80% while low quality channels to an undifferentiated audience might result in conversion rates <1%.
Potential Biases
● False Positive
○ When low forms of payment are requested, e.g. an email address, conversion rates may be unrealistically high and are often misinterpreted.
● False Negative
○ When the value proposition is shown to customers outside the target market, conversion rates drop and show a false negative. Lack of customer segmentation or a poorly segmented channel are usually the cause of this.
○ Similarly, when the value proposition is not understandable to the customer, low conversion rates can occur. The results are sometime misinterpreted. (See comprehension testing.)
Field Tips
● “Run a comprehension test before a smoke test or you won’t understand why it doesn’t work.” @TriKro
● “For smoke tests, set a fail condition based on analog businesses or business model demands.” @TriKro
● Got a tip? Add a tweetable quote by emailing us: [email protected]
Case Studies
● LOIs as Payment
● Got a case study? Add a link by emailing us: [email protected]
References
● Wikipedia - Smoke Testing (Lean Startup)
● Ramli John - A Landing Page is Not a Minimum Viable Product
● Got a reference? Add a link by emailing us: [email protected]
Conjoint Analysis
In Brief
A complex survey method where customers choose between product offerings that have different attributes such as price, screen size, or weight. Statistical analysis is then used to reveal the relative value of each attribute and predict the value of each possible combination of features.
Helps Answer
● Does a particular new feature have any value in the eyes of the customer?
● Which product attributes are more/less important to the customer?
● What dollar value can we be assigned with each feature?
● Which features should we build next?
Tags
● Quantitative
● Pricing
● Revenue
● Value Proposition
Description
Time Commitment and Resources
1-2 hours offline for B2C or 24 hours online to gather responses. For B2B, participant recruitment times can vary widely. Analysis of the data can be very rapid with off the shelf
software for analyzing less than 10 attributes. For analyzing dozens of factors the expertise and software required can take several weeks and human analysis.
How To
1. Create a list of the top 3-5 product attributes you want to rank based on deep consumer understanding gained from prior experience and research.
2. No hard & fast rule but a good guideline is: Sample Size = [ (Total # of levels for all attributes) - (Number of attributes + 1) ] x 10 -- ref
3. Use software program to mix attributes into new product offerings
4. Show participants selected product offerings side by side and have them choose which one they would prefer (see example below from Pragmatic Marketing article)
5. Use statistical analysis software (or consultant / service) to analyze the results and compute a relative value ranking for each stand-alone attribute
6. Output formula revealing the “ideal” product based upon optimized mix of attributes.
Interpreting Results
Conjoint analysis can be complex and, depending on the tools and exact statistical method employed, the results from the analysis be be extremely difficult to understand as raw statistical data:
(XLStat Demo Screenshot)
Other methods of displaying the results can be more straightforward, but lack details:
(Relative Parts-Worth Sensitivity Analysis)
(Qualtrics Conjoint Types)
What matters most is:
1. The relative importance of each attribute compared with the others
2. The formula that allows you to predict the relative preferences of any kind of mix
3. Elasticity of demand for pricing simulations (presuming that price was an attribute that was tested)
Conjoint analysis is most often used in existing markets where the product attributes are generally known by the customer. When brand new attributes are introduced, customers may not initially understand them and therefore may not be able to accurately include the potential value of those attributes in their choices, producing a false negative of sorts.
For this reason, generative market research methods are generally used before conjoint analysis to ensure that the attributes being tested are the correct one.
The method also tends to be extensive and requires a high level of expertise to design. Early stage innovation projects therefore rarely use this method.
Potential Biases
● Confirmation Bias: If administering the surveys face-to-face, overly enthusiastic entrepreneurs will sometimes over explain, correct, or nonverbally prompt the participant with the desired answer.
● Invalid Target Audience: Key to the success of conjoint analysis is knowing your audience well enough to be able to create products with useful mix of attributes to begin with.
○ Conjoint analysis works best for products and services that rely more on logical comparison and less on emotion or impulse.
● Homogenous Market:
○ Boiling market segments down to a series of equations and values has the drawback of treating every member of that segment identically. This is can often be reasonable within the specific price range studied but outside of these ranges, the mix of desirable attributes can change quite dramatically as customers enter and leave the market.
● Indication of Price Sensitivity NOT Exact Pricing
○ Conjoint analysis is great for providing an indication about which variables and ranges influence pricing but a separate pricing and elasticity of demand analysis should be performed separately to really nail this down.
Case Studies
● Got a tip? Add a tweetable quote by emailing us: [email protected]
References
● MIT Sloan Courseware - Note on Conjoint Analysis by John R. Huaser
● Chris Chapman - 9 Things Clients Get Wrong About Conjoint Analysis
● Brett Jarvis - Conjoint Analysis 101
● Things You Need to Know About Conjoint Analysis
● Sawtooth Software - Interpreting the Results of Conjoint Analysis
● Quirks - Conjoint Analysis in Pharmaceutical Marketing Research
● Got a case study? Add a link by emailing us: [email protected]
Conjoint Software Resources
● Conjoint Survey Design Tool, Harvard 2014 (Free)
● XLSTAT-Conjoint ($50 Student, $275 private)
● Conjoint Analysis in Excel (Free)
● Choosing By Advantage ($30/mo, similar to CA)
● Survey Gizmo ($95/mo, free 7-day trial)
● 1000minds.com ($20,000 for enterprise, free for students)
● Got a reference? Add a link by emailing us: [email protected]
Preto- & Prototyping
In Brief
We’re not done yet!
Tweet us and we’ll write this chapter:
Hey, @realstartupbook, please write the chapter on Preto- & Prototyping
Generative Product Research
“Research is formalized curiosity.
It is poking and prying with a purpose.”
– Zora Neale Hurston
Concierge Test
In Brief
Concierge is a technique to test the solution of a customer problem by manually performing tasks as a service. Typically it is inefficient in terms of cost effectiveness, but can provide detailed information about how a solution can be created and what minimum viable feature set should be included in an automated and optimized product.