-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path021.lyx
2322 lines (1964 loc) · 53.3 KB
/
021.lyx
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
#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 474
\begin_document
\begin_header
\textclass memoir
\use_default_options true
\master hpmor_volume1_16x23.lyx
\begin_modules
initials
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman times
\font_sans default
\font_typewriter default
\font_math auto
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize 11
\spacing single
\use_hyperref false
\papersize custom
\use_geometry true
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date true
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\paperwidth 8.25in
\paperheight 10.75in
\leftmargin 0.5in
\topmargin 0.875in
\rightmargin 0.625in
\bottommargin 0.875in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 2
\papersides 2
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Chapter
Rationalization
\end_layout
\begin_layout Initial
\begin_inset Argument 2
status open
\begin_layout Plain Layout
H
\end_layout
\end_inset
\begin_inset Argument 3
status open
\begin_layout Plain Layout
ermione
\end_layout
\end_inset
Granger had worried she was turning Bad.
\begin_inset Newline newline
\end_inset
The difference between Good and Bad was usually easy to grasp, she'd never
understood why other people had so much trouble.
At Hogwarts, “Good” was Professor Flitwick and Professor McGonagall and
Professor Sprout.
“Bad” was Professor Snape and Professor Quirrell and Draco Malfoy.
Harry Potter… was one of those unusual cases where you
\emph on
couldn't
\emph default
tell just by looking.
She was still trying to figure out where he belonged.
\end_layout
\begin_layout Standard
But when it came to
\emph on
herself
\emph default
…
\end_layout
\begin_layout Standard
Hermione was having
\emph on
too much fun
\emph default
crushing Harry Potter.
\end_layout
\begin_layout Standard
She'd done better than him in every single class they'd taken.
(Except for broomstick riding which was like gym class, it didn't count.)
She'd gotten
\emph on
real
\emph default
House points almost every day of their first week, not for weird heroic
things, but
\emph on
smart
\emph default
things like learning spells quickly and helping other students.
She knew those kinds of House points were better, and the best part was,
Harry Potter knew it too.
She could see it in his eyes every time she won another
\emph on
real
\emph default
House point.
\end_layout
\begin_layout Standard
If you were Good, you weren't supposed to enjoy winning this much.
\end_layout
\begin_layout Standard
It had started on the day of the train ride, though it had taken a while
for the whirlwind to sink in.
It wasn't until later that night that Hermione had begun to realize just
\emph on
how much
\emph default
she'd let that boy walk all over her.
\end_layout
\begin_layout Standard
Before she'd met Harry Potter she hadn't had anyone she'd wanted to crush.
If someone wasn't doing as well as her in class, it was her job to help
them, not rub it in.
That was what it meant to be Good.
\end_layout
\begin_layout Standard
And now…
\end_layout
\begin_layout Standard
…now she was
\emph on
winning
\emph default
, Harry Potter was flinching every time she got another House point, and
it was
\emph on
so much
\emph default
fun, her parents had warned her against drugs and she suspected this was
\emph on
more fun
\emph default
than that.
\end_layout
\begin_layout Standard
She'd always liked the smiles that teachers gave her when she did something
right.
She'd always liked seeing the long row of check-marks on a perfectly answered
test.
But now when she did well in class she would casually glance around and
catch a glimpse of Harry Potter gritting his teeth, and it made her want
to burst into song like a Disney movie.
\end_layout
\begin_layout Standard
That was Bad, wasn't it?
\end_layout
\begin_layout Standard
Hermione had worried she was turning Bad.
\end_layout
\begin_layout Standard
And then a thought had come to her which wiped away all her fears.
\end_layout
\begin_layout Standard
She and Harry were getting into a Romance! Of course! Everyone knew what
it meant when a boy and a girl started fighting all the time.
They were
\emph on
courting
\emph default
one another! There was nothing Bad about
\emph on
that.
\end_layout
\begin_layout Standard
It couldn't be that she just
\emph on
enjoyed
\emph default
beating the living scholastic daylights out of the most famous student
in the school, someone who was
\emph on
in
\emph default
books and
\emph on
talked
\emph default
like books, the boy who had somehow vanquished the Dark Lord and even smushed
\emph on
Professor Snape
\emph default
like a sad little bug, the boy who was, as Professor Quirrell would have
put it, dominant, over everyone else in first-year Ravenclaw
\emph on
except
\emph default
for Hermione Granger who was utterly
\emph on
squishing
\emph default
the Boy-Who-Lived in all his classes besides broomstick riding.
\end_layout
\begin_layout Standard
Because that would have been Bad.
\end_layout
\begin_layout Standard
No.
It was Romance.
\emph on
That
\emph default
was it.
\emph on
That
\emph default
was why they were fighting.
\end_layout
\begin_layout Standard
Hermione was glad she had figured this out in time for today, when Harry
would lose their book-reading contest, which the
\emph on
whole school
\emph default
knew about, and she wanted to start
\emph on
dancing
\emph default
with the sheer overflowing joy of it.
\end_layout
\begin_layout Standard
It was 2:45pm on Saturday and Harry Potter had half of Bathilda Bagshot's
\emph on
A History of Magic
\emph default
left to read and she was staring at her pocket watch as it ticked with
dreadful slowness toward 2:47pm.
\end_layout
\begin_layout Standard
And the entire Ravenclaw common room was watching.
\end_layout
\begin_layout Standard
It wasn't just the first-years, news had spread like spilled milk and fully
half of Ravenclaw was crowded into the room, squeezed into sofas and leaning
on bookcases and sitting on the arms of chairs.
All six prefects were there including the Head Girl of Hogwarts.
Someone had needed to cast an Air-Freshening Charm just so that there would
be enough oxygen.
And the din of conversation had died into whispers which had now faded
into utter silence.
\end_layout
\begin_layout Standard
2:46pm.
\end_layout
\begin_layout Standard
The tension was unbearable.
If it had been anyone else,
\emph on
anyone
\emph default
else, his defeat would have been a foregone conclusion.
\end_layout
\begin_layout Standard
But this was Harry Potter, and you couldn't rule out the possibility that
he would, sometime in the next few seconds, raise a hand and snap his fingers.
\end_layout
\begin_layout Standard
With sudden terror she realized how Harry Potter might be able to do exactly
that.
It would be
\emph on
just like him
\emph default
to have
\emph on
already finished reading
\emph default
the second half of the book earlier…
\end_layout
\begin_layout Standard
Hermione's vision began to swim.
She tried to make herself breathe, and found that she simply couldn't.
\end_layout
\begin_layout Standard
Ten seconds left, and he still hadn't raised his hand.
\end_layout
\begin_layout Standard
Five seconds left.
\end_layout
\begin_layout Standard
2:47pm.
\end_layout
\begin_layout Standard
Harry Potter carefully placed a bookmark into his book, closed it, and laid
it aside.
\end_layout
\begin_layout Standard
“I would like to note for the benefit of posterity,” said the Boy-Who-Lived
in a clear voice, “that I had only half a book left, and that I ran into
a number of unexpected delays
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
“
\emph on
You lost!
\emph default
” shrieked Hermione.
“You
\emph on
did!
\emph default
You
\emph on
lost our contest!
\emph default
”
\end_layout
\begin_layout Standard
There was a collective exhalation as everyone started breathing again.
\end_layout
\begin_layout Standard
Harry Potter shot her a Look of Flaming Fire, but she was floating in a
halo of pure white happiness and nothing could touch her.
\end_layout
\begin_layout Standard
“
\emph on
Do you realize what kind of week I've had?
\emph default
” said Harry Potter.
“Any lesser being would have been hard-pressed to read eight Dr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Seuss books!”
\end_layout
\begin_layout Standard
“
\emph on
You
\emph default
set the time limit.”
\end_layout
\begin_layout Standard
Harry's Look of Flaming Fire grew even hotter.
“I did not have any logical way of knowing I'd have to save the entire
school from Professor Snape, or get beaten up in Defense class, and if
I told you how I lost all the time between 5pm and dinner on Thursday you
would think I was insane
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
“Awww, it sounds like
\emph on
someone
\emph default
fell prey to the
\emph on
planning fallacy.
\emph default
“
\end_layout
\begin_layout Standard
Raw shock showed on Harry Potter's face.
\end_layout
\begin_layout Standard
“Oh that reminds me, I finished reading the first batch of books you lent
me,” Hermione said with her best innocent look.
A couple of them had been
\emph on
hard
\emph default
books, too.
She wondered how long it had taken
\emph on
him
\emph default
to finish reading them.
\end_layout
\begin_layout Standard
“Someday,” said the Boy-Who-Lived, “when the distant descendants of
\emph on
Homo sapiens
\emph default
are looking back over the history of the galaxy and wondering how it all
went so wrong, they will conclude that the original mistake was when someone
taught Hermione Granger how to read.”
\end_layout
\begin_layout Standard
“But you still lose,” said Hermione.
She held a hand to her chin and looked contemplative.
“Now what exactly should you lose, I wonder?”
\end_layout
\begin_layout Standard
“
\emph on
What?
\emph default
”
\end_layout
\begin_layout Standard
“You lost the bet,” Hermione explained, “so you have to pay a forfeit.”
\end_layout
\begin_layout Standard
“I don't remember agreeing to this!”
\end_layout
\begin_layout Standard
“Really?” said Hermione Granger.
She put a thoughtful look on her face.
Then, as if the idea had only just then occurred to her, “We'll take a
vote, then.
Everyone in Ravenclaw who thinks Harry Potter has to pay up, raise your
hand!”
\end_layout
\begin_layout Standard
“
\emph on
What?
\emph default
” shrieked Harry Potter again.
\end_layout
\begin_layout Standard
He spun around and saw that he was surrounded by a sea of raised hands.
\end_layout
\begin_layout Standard
And if Harry Potter had looked
\emph on
more carefully
\emph default
, he would have noticed that an awful lot of the onlookers seemed to be
girls and that practically every female in the room had their hand raised.
\end_layout
\begin_layout Standard
“Stop!” wailed Harry Potter.
“You don't know what she's going to ask! Don't you
\emph on
realize
\emph default
what she's doing? She's getting you to make an advance commitment now,
and then the pressure of consistency will make you agree with whatever
she says afterward!”
\end_layout
\begin_layout Standard
“Don't worry,” said the prefect Penelope Clearwater.
“If she asks for something unreasonable, we can just change our minds.
Right, everyone?”
\end_layout
\begin_layout Standard
And there were eager nods from all the girls whom Penelope Clearwater had
told about Hermione's plan.
\end_layout
\begin_layout Quote
\align center
\begin_inset Graphics
filename fleur.png
scale 50
\end_inset
\end_layout
\begin_layout Standard
A silent figure quietly slipped through the chilled halls of the Hogwarts
dungeons.
He was to be present in a certain room at 6:00pm to meet a certain someone,
and if at all possible it was best to be early, to show respect.
\end_layout
\begin_layout Standard
But when his hand turned the doorknob and opened the door into that dark,
silent, unused classroom, there was a silhouette already standing there
amid the rows of dusty old desks.
A silhouette which held a small green glowing rod, casting a pale light
which hardly illuminated even he who held it, let alone the surrounding
room.
\end_layout
\begin_layout Standard
The light of the hallway died as the door closed and shut behind him, and
Draco's eyes began the process of adjusting to the dim glow.
\end_layout
\begin_layout Standard
The silhouette slowly turned to behold him, revealing a shadowed face only
partially lit by the eerie green light.
\end_layout
\begin_layout Standard
Draco liked this meeting already.
Keep the chill green light, make them both taller, give them hoods and
masks, move them from a classroom to a graveyard, and it would be just
like the start of half the stories his father's friends told about the
Death Eaters.
\end_layout
\begin_layout Standard
“I want you to know, Draco Malfoy,” said the silhouette in tones of deadly
calm, “that I do not blame you for my recent defeat.”
\end_layout
\begin_layout Standard
Draco opened his mouth in unthinking protest, there was no possible reason
why he
\emph on
should
\emph default
be blamed
\begin_inset space ~
\end_inset
--
\end_layout
\begin_layout Standard
“It was due, more than anything else, to my own stupidity,” continued that
shadowy figure.
“There were many other things I could have done, at any step along the
way.
You did not ask me to do
\emph on
exactly
\emph default
what I did.
You only asked for help.
I was the one who unwisely chose that particular method.
But the fact remains that I lost the contest by half a book.
The actions of your pet idiot, and the favor you asked for, and, yes, my
own foolishness in going about it, caused me to
\emph on
lose time
\emph default
.
More time than you know.
Time which, in the end, proved critical.
The fact remains, Draco Malfoy, that if you had not asked that favor, I
\emph on
would
\emph default
have won.
And not… instead…
\emph on
lost
\emph default
.”
\end_layout
\begin_layout Standard
Draco had already heard about Harry's loss, and the forfeit Granger had
claimed from him.
The news had spread faster than owls could have carried it.
\end_layout
\begin_layout Standard
“I understand,” Draco said.
“I'm sorry.” There was nothing else he
\emph on
could
\emph default
say if he wanted Harry Potter to be friends with him.
\end_layout
\begin_layout Standard
“I am not asking for understanding or sorrow,” said the dark silhouette,
still with that deadly calm.
“But I have just spent two full hours in the presence of Hermione Granger,
dressed in such clothing as was provided me, visiting such fascinating
places in Hogwarts as a tiny burbling waterfall of what looked to me like
snot, accompanied by a number of other girls who insisted on such helpful
activities as strewing our path with Transfigured rose petals.
I have been on a date, scion of Malfoy.
My
\emph on
first
\emph default
date.
\emph on
And when I call that favor due, you will pay it.
\emph default
\begin_inset Quotes erd
\end_inset
\begin_inset Float figure
wide false
sideways false
status collapsed
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename 021-potter__s_first_date_by_dinosaurusgede-d33p4m5.png
lyxscale 30
\end_inset
\end_layout
\begin_layout Plain Layout
\align center
\begin_inset Box Frameless
position "t"
hor_pos "c"
has_inner_box 1
inner_pos "t"
use_parbox 0
use_makebox 0
width "80col%"
special "none"
height "1in"
height_special "totalheight"
status open
\begin_layout Plain Layout
\size small
“I have just spent two full hours in the presence of Hermione Granger, dressed
in such clothing as was provided me, visiting such fascinating places in
Hogwarts as a tiny burbling waterfall of what looked to me like snot, accompani
ed by a number of other girls who insisted on such helpful activities as
strewing our path with Transfigured rose petals.
I have been on a date, scion of Malfoy.
My
\emph on
first
\emph default
date.
\emph on
And when I call that favor due, you will pay it.
\emph default
\begin_inset Quotes erd
\end_inset
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Draco nodded solemnly.
Before arriving he had taken the wise precaution of learning every available
detail of Harry's date, so that he could get all of his hysterical laughing
done before their appointed meeting time, and would not commit a
\emph on
faux pas
\emph default
by giggling continuously until he lost consciousness.
\end_layout
\begin_layout Standard
“Do you think,” Draco said, “that something sad ought to happen to the Granger
girl
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
“Spread the word in Slytherin that the Granger girl is
\emph on
mine
\emph default
and anyone who meddles in
\emph on
my
\emph default
affairs will have their remains scattered over an area wide enough to include
twelve different spoken languages.
And since I am not in Gryffindor and I use
\emph on
cunning
\emph default
rather than immediate frontal attacks, they should not panic if I am seen
smiling at her.”
\end_layout
\begin_layout Standard
“Or if you're seen on a second date?” Draco said, allowing just a tiny note
of skepticism into his voice.
\end_layout
\begin_layout Standard
“
\emph on
There will be no second date,
\emph default
\begin_inset Quotes erd
\end_inset
said the green-lit silhouette in a voice so fearsome that it sounded, not
only like a Death Eater, but like Amycus Carrow that one time just before
Father told him to stop it, he wasn't the Dark Lord.
\end_layout
\begin_layout Standard
Of course it
\emph on
was
\emph default
still a young boy's high unbroken voice and when you combined that with
the
\emph on
actual words
\emph default
, well, it just didn't work.
If Harry Potter
\emph on
did
\emph default
become the next Dark Lord someday, Draco would use a Pensieve to store
a copy of this memory somewhere safe, and Harry Potter would never dare
betray him.
\end_layout
\begin_layout Standard
“But let us talk of happier matters,” said the green-shadowed figure.
“Let us talk of knowledge and of power.
Draco Malfoy, let us talk of Science.”
\end_layout
\begin_layout Standard
“Yes,” said Draco.
“Let us speak.”
\end_layout
\begin_layout Standard
Draco wondered how much of his own face could be seen, and how much was
in shadow, in that eerie green light.
\end_layout
\begin_layout Standard
And though Draco kept his face serious, there was a smile in his heart.
\end_layout
\begin_layout Standard
He was
\emph on
finally
\emph default
having a real grownup conversation.
\end_layout
\begin_layout Standard
“I offer you power,” said the shadowy figure, “and I will tell you of that
power and its price.
The power comes from knowing the shape of reality and so gaining control
over it.
What you understand, you can command, and that is power enough to walk
upon the Moon.
The price of that power is that you must learn to ask questions of Nature,
and far more difficult, accept Nature's answers.
You will do experiments, perform tests and see what happens.
And you must accept the meaning of those results when they tell you that
you are mistaken.
You will have to
\emph on
learn how to lose
\emph default
, not to me, but to Nature.
When you find yourself arguing with reality, you will have to let reality
win.
You will find this painful, Draco Malfoy, and I do not know if you are
strong in that way.
Knowing the price, is it still your wish to learn the human power?”
\end_layout
\begin_layout Standard
Draco took a deep breath.
He'd thought about this.
And it was hard to see how he could answer any other way.
He'd been instructed to take every avenue of friendship with Harry Potter.
It was just
\emph on
learning,
\emph default
he wasn't promising to
\emph on
do
\emph default
anything.
He could always stop the lessons at any time…
\end_layout
\begin_layout Standard
There were certainly any number of things about the situation which made
it look like a trap, but in all honesty, Draco didn't see how this could
go wrong.
\end_layout
\begin_layout Standard
Plus Draco did kind of want to rule the world.
\end_layout
\begin_layout Standard
“Yes,” said Draco.
\end_layout
\begin_layout Standard
“Excellent,” said the shadowy figure.
“I have had something of a
\emph on
crowded week
\emph default
, and it will take time to plan your curriculum
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
“I've got a lot of things I need to do myself to consolidate my power in
Slytherin,” said Draco, “not to mention homework.
Maybe we should just start in October?”
\end_layout
\begin_layout Standard
“Sounds sensible,” said the shadowy figure, “but what I meant to say is
that to plan your curriculum, I need to know what I will be teaching you.
Three thoughts come to me.
The first is that I teach you of the human mind and brain.
The second option is that I teach you of the physical universe, those arts
which lie on the pathway to visiting the Moon.
This involves a great deal of numbers, but to a certain kind of mind those
numbers are more beautiful than anything else Science has to teach.
Do you like numbers, Draco?”
\end_layout
\begin_layout Standard
Draco shook his head.
\end_layout
\begin_layout Standard
“Then so much for that.
You will learn your mathematics eventually, but not right away, I think.
The third option is that I teach you of genetics and evolution and inheritance,
what you would call blood
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
“That one,” said Draco.
\end_layout
\begin_layout Standard
The figure nodded.
“I thought you might say as much.
But I think it will be the most painful path for you, Draco.
What if your family and friends, the blood purists, say one thing, and
you find that the experimental test says another?”
\end_layout
\begin_layout Standard
“Then I'll figure out how to make the experimental test say the
\emph on
right
\emph default
answer!”
\end_layout