-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqm8.eng.final.srt
5513 lines (4134 loc) · 127 KB
/
qm8.eng.final.srt
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
1
00:00:04,386 --> 00:00:06,590
Stanford University
2
00:00:09,485 --> 00:00:14,383
I was talking about what happens during or from beginning from before
3
00:00:14,417 --> 00:00:16,287
A measurement to after a measurement
4
00:00:16,665 --> 00:00:18,830
We are talking about what happens to the evolution
5
00:00:19,275 --> 00:00:21,896
of an isolated black hole left to itself
6
00:00:23,173 --> 00:00:25,987
between the time that it was prepared and the time it was measured
7
00:00:26,869 --> 00:00:30,264
Okay, nevertheless I could answer a question
8
00:00:30,796 --> 00:00:35,672
Is entanglement inevitably irreversible?
9
00:00:36,000 --> 00:00:39,391
If two things which are not entangled come together
10
00:00:39,987 --> 00:00:41,055
interact with each other
11
00:00:41,103 --> 00:00:43,794
Do whatever they do and become entangled
12
00:00:45,240 --> 00:00:46,187
Is it irreversible?
13
00:00:46,188 --> 00:00:49,359
Not necessarily anything that can happen The opposite can happen
14
00:00:52,285 --> 00:00:56,904
Now we're not talking about an external apparatus measuring the system
15
00:00:57,467 --> 00:01:00,032
we are simply talking for example about two spins
16
00:01:01,128 --> 00:01:03,342
two spins interact with each other come together
17
00:01:03,795 --> 00:01:05,185
go off an they are entangled
18
00:01:06,227 --> 00:01:10,237
what happens is it possible to disentangle them by,
19
00:01:10,250 --> 00:01:15,724
for example, reflecting them, letting them come together and interact again
20
00:01:16,411 --> 00:01:17,252
Can they become disentangle?
21
00:01:17,252 --> 00:01:22,814
Yes, yes, there is no rule that says entanglement is irreversible
22
00:01:23,440 --> 00:01:26,465
On the other hand, if an entanglement happens
23
00:01:26,909 --> 00:01:29,573
and you take one of the electrons off and throw it away
24
00:01:31,169 --> 00:01:35,249
then the other one is stuck there left being entangled with the thing that
25
00:01:35,250 --> 00:01:37,895
just not gonna come back, not gonna come back
26
00:01:41,951 --> 00:01:45,103
unless, of course, somebody out there reflect it back and
27
00:01:45,104 --> 00:01:49,001
so yeah entanglement is re- is reversible
28
00:01:49,844 --> 00:01:52,146
But as far as you're concerned,
29
00:01:52,202 --> 00:01:55,229
the measurements that you do are irreversible
30
00:01:56,908 --> 00:02:02,006
that's a very peculiar situation, you have to think about it
31
00:02:02,567 --> 00:02:04,266
Understand what it means
32
00:02:05,505 --> 00:02:09,644
we are gonna move off the question of these very simple systems
33
00:02:09,698 --> 00:02:16,064
spins sometimes called qubits, tonight at some point,
34
00:02:16,065 --> 00:02:19,597
but I want to just go over just very briefly,
35
00:02:19,941 --> 00:02:23,079
I think I probably discussed this in class last time,
36
00:02:23,729 --> 00:02:29,893
but nevertheless it's so important that I wanna hammer on it,
37
00:02:31,366 --> 00:02:34,424
first of all there was a notion of the density matrix
38
00:02:34,425 --> 00:02:36,594
if we have two systems Alice's system, and Bob system
39
00:02:36,595 --> 00:02:42,285
and Alice's system or Bob system are far away from each other
40
00:02:42,476 --> 00:02:45,945
so that Alice doesn't get to do any experiments on Bob system
41
00:02:46,572 --> 00:02:49,032
Bob does not get to do experiments on Alice's system,
42
00:02:49,033 --> 00:02:52,295
but they are entangled either they are or they are not entangled
43
00:02:52,963 --> 00:02:53,646
they may be entangled
44
00:02:54,778 --> 00:03:00,998
Is their description that Alice by herself uses to describe just her subsystem
45
00:03:01,849 --> 00:03:08,620
the answer is yes, and the working description of her sub system is called the density matrix
46
00:03:09,278 --> 00:03:15,621
so limited review that very very quickly and then go back over some concepts
47
00:03:15,987 --> 00:03:19,746
if the wave function of the Alice Bob system
48
00:03:20,495 --> 00:03:25,763
The combined system of Alice's subsystem and Bob's
49
00:03:26,350 --> 00:03:32,664
the wave function is called Psi of a and b,
50
00:03:32,665 --> 00:03:38,646
b for Bob a for Alice then Alice's, Alice's density matrix
51
00:03:38,718 --> 00:03:45,049
Alice's density matrix is defined to be psi star,
52
00:03:45,050 --> 00:03:46,316
the complex conjugate of the wave function,
53
00:03:47,525 --> 00:03:52,714
I know, let's say it rho it's rho, called the density matrix,
54
00:03:52,715 --> 00:03:59,338
it's indicated by rho, it has subscript a and a prime because it's a matrix
55
00:03:59,339 --> 00:04:02,204
but it doesn't have anything to do a Bob
56
00:04:02,205 --> 00:04:05,501
so it's purely a matrix with respect to Alice's variables
57
00:04:05,502 --> 00:04:09,694
let's indicate that by calling this Alice's density matrix
58
00:04:12,011 --> 00:04:20,516
and its given by Psi star of a b a prime b, I was getting confused
59
00:04:20,748 --> 00:04:31,921
a prime psi of ab, summed over Bob's variables
60
00:04:33,369 --> 00:04:36,605
it doesn't depend on Bob's variables because they have been summed over
61
00:04:36,711 --> 00:04:40,538
when you sum over something it no longer depends on that set of variables,
62
00:04:40,539 --> 00:04:43,734
so this is only a function of Alice's variables
63
00:04:43,858 --> 00:04:54,640
and it contains all possible all possible um, statistical information
64
00:04:54,785 --> 00:04:59,993
that Alice can ever know about her half of the system
65
00:04:59,994 --> 00:05:07,283
unless Bob comes in interact with her system of course
66
00:05:07,941 --> 00:05:11,111
if Bob comes from wherever he is and give,
67
00:05:11,112 --> 00:05:15,093
her system a shove of some sort that will change her density matrix,
68
00:05:15,094 --> 00:05:18,284
but as long as Bob stays away from her system
69
00:05:18,462 --> 00:05:21,408
Bob's in Palo Alto Alice's on Alpha Centauri
70
00:05:21,409 --> 00:05:25,190
as long as Bob does not interact directly with her system
71
00:05:25,950 --> 00:05:30,781
her density matrix doesn't change, no matter what Bob does
72
00:05:31,287 --> 00:05:33,336
let me give a little proof of that
73
00:05:34,707 --> 00:05:42,507
let's take Bob's subsystem to not be so narrow, just to be the little spin
74
00:05:42,508 --> 00:05:46,453
that is carrying around and also Alice's
75
00:05:46,454 --> 00:05:50,757
let's imagine that Alice's subsystem consists of everything in Alice's neighborhood
76
00:05:50,758 --> 00:05:56,348
everything that she can have any contact with
77
00:05:56,557 --> 00:06:00,452
everything in Bob system is everything in Bob's neighborhood,
78
00:06:00,717 --> 00:06:06,218
Maybe even including Bob, and now Bob is going to do something
79
00:06:06,517 --> 00:06:12,624
he's going to do something interact of course he can only interact directly,
80
00:06:12,625 --> 00:06:16,147
Interact mean he may turn on a magnetic field,
81
00:06:16,559 --> 00:06:22,695
he may do all sorts of things ought to change the evolution of his sub system
82
00:06:24,231 --> 00:06:26,964
he's gonna make a subsystem evolve in some way
83
00:06:28,136 --> 00:06:34,669
One of the ways which Bob can cause his sub system to evolve many many ways,
84
00:06:35,097 --> 00:06:36,990
but whatever they are,
85
00:06:36,991 --> 00:06:39,851
they are always governed by unitary matrices,
86
00:06:40,958 --> 00:06:45,342
let's come over here and forget Alice for a minute and ask what Bob can do is subsystem
87
00:06:45,776 --> 00:06:49,309
he has a wave function, let's leave out Alice and the picture altogether
88
00:06:50,447 --> 00:06:57,064
just suppose that Bob has a wave function and he's gonna manipulate the system somehow
89
00:06:58,430 --> 00:07:00,146
he's gonna manipulate the system somehow
90
00:07:01,064 --> 00:07:03,266
and send it to a new wave function
91
00:07:03,782 --> 00:07:06,644
rule is the new wave function of his sub system
92
00:07:07,314 --> 00:07:12,497
must be related to the old wave function by a unitary operator
93
00:07:12,891 --> 00:07:17,330
unitary operators of the things which govern time evolution go back
94
00:07:17,764 --> 00:07:21,132
Remember the time evolution, unitary operators,
95
00:07:21,133 --> 00:07:26,555
and that means it psi of b becomes replaced by sum over b
96
00:07:27,766 --> 00:07:29,331
some unitary matrix
97
00:07:29,332 --> 00:07:40,123
b b prime psi of b prime in terms of wave functions in matrices
98
00:07:41,608 --> 00:07:46,394
This is the description of what happens to Bob's matrix
99
00:07:46,477 --> 00:07:52,417
sorry Bob's column vector is basically called Bob's column vector
100
00:07:52,418 --> 00:07:54,101
describing his half of the world
101
00:07:54,518 --> 00:07:58,575
or his system and to find out what happens to it no matter what he does
102
00:07:58,576 --> 00:08:04,119
even if he doesn't do anything but let's suppose he does something, he does something,
103
00:08:04,357 --> 00:08:09,648
it generates a unitary evolution of his wave function
104
00:08:09,649 --> 00:08:14,100
now how do we describe the same thing in the composite language
105
00:08:14,738 --> 00:08:21,408
in the composite language of the wave function is psi of a and b
106
00:08:21,725 --> 00:08:23,704
Alice's and Bob's variable
107
00:08:23,936 --> 00:08:28,901
what happens to it when Bob manipulates his half of the world
108
00:08:29,290 --> 00:08:35,606
exactly the same thing with Alice's variables be just spectators
109
00:08:35,607 --> 00:08:40,909
just being passive spectators so psi of a and b just becomes psi of
110
00:08:41,196 --> 00:08:46,690
oops, put in there b prime, sum of b prime,
111
00:08:47,969 --> 00:08:51,381
this is a function of b and you sum over b prime,
112
00:08:52,875 --> 00:09:00,268
okay that's again a sum over b prime of U of b and b prime
113
00:09:01,301 --> 00:09:06,310
psi of a and b prime, a just passed through
114
00:09:06,311 --> 00:09:11,065
Alice know nothing whatever about the about this whole process
115
00:09:11,066 --> 00:09:17,286
her subsystem was not in any way influenced her index
116
00:09:18,067 --> 00:09:21,659
her part of the wave function Her half of the dependence of the wave function
117
00:09:21,660 --> 00:09:25,431
was uninfluenced by Bob's manipulation
118
00:09:26,034 --> 00:09:31,437
so let's go back and take the manipulated wave function
119
00:09:31,915 --> 00:09:34,094
This is the manipulated wave function
120
00:09:36,603 --> 00:09:50,227
call it psi, the manipulated wave function of b and a, of a and b that's this,
121
00:09:50,886 --> 00:09:57,422
It's been modified by the action of Bob's unitary operator,
122
00:09:57,658 --> 00:10:06,243
Okay now let's recalculate let's recalculate Alice's density matrix
123
00:10:06,315 --> 00:10:11,022
after all Alice's density matrix contains all information that you can ever know
124
00:10:11,023 --> 00:10:14,613
about her half of the world, so let's see what happened to it
125
00:10:15,242 --> 00:10:20,102
Well we first of all have to take the manipulated psi star
126
00:10:20,346 --> 00:10:25,930
We have to sum over b, but now we take the manipulated psi star
127
00:10:25,931 --> 00:10:27,244
Oh we hadn't written psi star,
128
00:10:27,711 --> 00:10:33,581
Sorry about that we have to write psi star manipulated of
129
00:10:34,661 --> 00:10:39,703
and we want to know about it with index a prime and b
130
00:10:39,768 --> 00:10:45,190
a prime and b, and now we get just to complex conjugating it
131
00:10:45,709 --> 00:10:47,244
this tells us how psi changes,
132
00:10:47,990 --> 00:10:56,250
let's just work out the complex conjugate that's the complex conjugate of a prime
133
00:10:58,460 --> 00:11:00,773
>> Where is a and b prime?
134
00:11:02,147 --> 00:11:05,461
this is a prime b, just a prime and b
135
00:11:05,663 --> 00:11:09,082
but here since b prime is a summation variable
136
00:11:09,395 --> 00:11:12,400
we do not want to write b prime here,
137
00:11:12,401 --> 00:11:15,351
b prime was the summation variable used over here,
138
00:11:15,964 --> 00:11:18,466
Let's just invent another one called b double prime
139
00:11:18,979 --> 00:11:22,585
we are gonna be, that's gonna be the summation variable in a moment
140
00:11:23,308 --> 00:11:32,237
and U complex conjugate of b and b double prime
141
00:11:35,294 --> 00:11:39,126
U complex conjugate of course is a sum over b double prime
142
00:11:41,171 --> 00:11:44,221
and the only reason I called it b double prime instead of b
143
00:11:44,222 --> 00:11:47,498
was so as not to confuse it with b prime
144
00:11:48,437 --> 00:11:50,440
here's one sum and here is a separate sum
145
00:11:51,378 --> 00:11:57,263
Now here is something what do we know about unitary operators
146
00:11:57,499 --> 00:12:05,378
unitary operators are operators that if we interchange b
147
00:12:05,427 --> 00:12:11,067
if we interchange the two indices and complex conjugate what happens?
148
00:12:12,409 --> 00:12:17,661
That's called it's called the inverse operator or the Hermitian conjugate
149
00:12:18,481 --> 00:12:24,424
for U, in general, it's called the Hermitian conjugate specifically for unitary,
150
00:12:24,425 --> 00:12:27,785
it becomes the inverse operator,
151
00:12:27,786 --> 00:12:29,894
Let's just call it the Hermitian conjugate
152
00:12:30,316 --> 00:12:37,556
if I un complex conjugate and interchange these two,
153
00:12:37,557 --> 00:12:40,915
sorry b double prime b double prime, b
154
00:12:41,170 --> 00:12:44,067
and this becomes Hermitian conjugate
155
00:12:46,319 --> 00:12:52,859
alright, so this is the usual story if operators operate to the right on ket vectors,
156
00:12:53,368 --> 00:12:59,614
the corresponding action on bra vectors is given by the by the Hermitian conjugate
157
00:13:00,355 --> 00:13:02,503
So now all I have to do is plug it
158
00:13:02,504 --> 00:13:10,836
we plug this in for the, for the manipulated psi star of summation over b b double prime
159
00:13:11,541 --> 00:13:28,248
psi star of a prime and b double prime times U dagger of b double prime and b
160
00:13:34,181 --> 00:13:37,215
it's a nuisance too many indices for me to be comfortable and blackboard,
161
00:13:37,749 --> 00:13:40,549
but I think this is worth doing
162
00:13:40,645 --> 00:13:45,772
now what about psi, psi is the other half it comes into the density matrix,
163
00:13:45,773 --> 00:14:01,136
and that's U, b b prime psi of what psi of a and b prime, complicated little mess
164
00:14:02,219 --> 00:14:10,428
oh what do we summing over, we are summing over all the b-s basically
165
00:14:11,012 --> 00:14:13,343
we are summing over this b over here,
166
00:14:13,730 --> 00:14:15,383
let's put the b summation here,
167
00:14:16,004 --> 00:14:19,851
we were summing over b double prime to get the manipulated wave
168
00:14:19,945 --> 00:14:21,686
for this complex conjugate,
169
00:14:21,777 --> 00:14:24,025
but we also have to sum over b prime here
170
00:14:25,647 --> 00:14:28,232
sum over all the bs this side
171
00:14:28,561 --> 00:14:31,450
each b is a summation variable by the time we finished
172
00:14:31,948 --> 00:14:34,553
Alright but now look at what we have,
173
00:14:34,661 --> 00:14:37,071
it looks complicated but what is this thing over here?
174
00:14:38,422 --> 00:14:44,005
Well not quite yet , I will wonder, it's essentially correct,
175
00:14:44,149 --> 00:14:46,263
but of course what you mean is the unit matrix
176
00:14:47,549 --> 00:14:50,014
This is the product matrix of U dagger
177
00:14:50,440 --> 00:14:55,006
this is a unitary matrix so U dagger is used inversed
178
00:14:55,508 --> 00:14:57,842
b double prime b b b prime,
179
00:14:58,052 --> 00:15:02,512
this is just a Kronecker Delta b double prime b prime,
180
00:15:03,338 --> 00:15:08,459
it just instructs you to set b double prime equal to b prime
181
00:15:08,544 --> 00:15:12,378
when you do this sum, when you do one of the two sum
182
00:15:12,781 --> 00:15:14,024
let's say the b double prime sum
183
00:15:14,750 --> 00:15:20,039
so all of these then becomes sum over b prime,
184
00:15:20,301 --> 00:15:25,814
well, let's see what have we got, we set b double prime
185
00:15:26,635 --> 00:15:31,777
We've done b sum over b that's done, oh sum over b we just did it,
186
00:15:31,778 --> 00:15:35,049
and now we set b double prime equal to b prime
187
00:15:35,468 --> 00:15:43,903
psi star of a prime b prime, psi of a and b prime,
188
00:15:45,027 --> 00:15:52,020
that's it doesn't matter whether we call b prime b prime or whether we call it b
189
00:15:52,308 --> 00:15:54,821
because it's a summation variable so let's do that
190
00:15:54,921 --> 00:16:00,342
Let's just call it b, and what do we have we have exactly I hope, I pray
191
00:16:00,596 --> 00:16:06,320
the original density matrix so Bob, no matter what he does
192
00:16:06,613 --> 00:16:11,914
as long as what he does is described by a unitary matrix
193
00:16:12,216 --> 00:16:16,953
Bob will have absolutely no effect on Alice's density matrix
194
00:16:17,293 --> 00:16:20,272
does not matter whether entangled or not
195
00:16:20,273 --> 00:16:23,371
No way is that I specify that this was a product state
196
00:16:28,047 --> 00:16:30,604
That is what physicists call locality
197
00:16:31,853 --> 00:16:39,697
the inability of Bob to influence any statistical prediction of Alice's
198
00:16:40,793 --> 00:16:44,703
by doing a manipulation on his own degrees of freedom
199
00:16:47,586 --> 00:16:50,904
locality is not violated, this form of locality
200
00:16:50,905 --> 00:16:59,023
This form of locality is not violated in any way by the phenomenon of entanglement
201
00:17:00,038 --> 00:17:07,401
that's the technical argument, notice that it does depend on unitarity
202
00:17:07,546 --> 00:17:16,280
so what do unitarity do, unitarity had to do with conservation of distinctions
203
00:17:17,047 --> 00:17:19,147
what I called the minus first law,
204
00:17:19,328 --> 00:17:20,805
at least in its quantum mechanical version
205
00:17:21,739 --> 00:17:23,584
so funny and interesting interplay
206
00:17:24,673 --> 00:17:29,293
funny, interesting interplay between the conservation of distinctions on the one hand
207
00:17:30,038 --> 00:17:30,618
and locality
208
00:17:31,941 --> 00:17:39,381
If Bob somehow had access to changes which were not described by unitary operators,
209
00:17:39,749 --> 00:17:42,870
this would not have become the unit matrix over here
210
00:17:43,279 --> 00:17:50,816
and the final density matrix, Alice's final density matrix indeed would have been modified
211
00:17:51,336 --> 00:17:54,775
this is interesting the way the whole thing holds together
212
00:17:54,995 --> 00:17:57,861
this is why it's so hard to change quantum mechanics
213
00:17:57,916 --> 00:17:59,170
you wanna play a little game,
214
00:17:59,645 --> 00:18:04,303
let's let Bob tha's Bob's evolution, not quite be unitary,
215
00:18:04,584 --> 00:18:05,867
only approximately unitary,
216
00:18:06,526 --> 00:18:11,175
well then immediately you start sending signals faster than speed of light
217
00:18:11,784 --> 00:18:16,243
How? by instantly modifying Alice's density matrix
218
00:18:18,596 --> 00:18:20,444
so things hold together tightly
219
00:18:21,313 --> 00:18:22,559
and it's hard to change them
220
00:18:26,367 --> 00:18:28,295
good so yes so
221
00:18:29,279 --> 00:18:36,432
>>Is it correct to say that Bob's matrix is unitary?
222
00:18:36,640 --> 00:18:48,532
He's not able to change Alice's, Alice's system
223
00:18:49,390 --> 00:18:52,887
He's changed his own system by doing something
224
00:18:53,488 --> 00:18:55,784
in the doing something was described by this unitary matrix
225
00:18:57,454 --> 00:19:00,176
>> that's the part I confused, if you are doing something
226
00:19:00,408 --> 00:19:02,310
>> Isn't he going to violate the unitarity?
227
00:19:04,329 --> 00:19:06,847
For example, he might be turning a magnet,
228
00:19:08,536 --> 00:19:11,266
He might be turning a magnet in such a way
229
00:19:11,267 --> 00:19:13,395
that it has an influence on his spin
230
00:19:14,044 --> 00:19:17,484
What is that influence? It will change the state of the spin
231
00:19:18,260 --> 00:19:27,059
For example, if you have a spin in a given direction and it's coupled to a magnetic field
232
00:19:27,443 --> 00:19:29,821
Then you turn the magnetic field in some way
233
00:19:30,159 --> 00:19:32,635
It will typically change the evolution of the spin
234
00:19:34,226 --> 00:19:37,951
So Bob can do that, he can change a magnetic field,
235
00:19:38,050 --> 00:19:39,383
it's acting on certain spin,
236
00:19:40,186 --> 00:19:43,975
the result will be to change the way the spin evolves
237
00:19:44,634 --> 00:19:48,165
that will change his own measurements of the spin of his spin
238
00:19:50,447 --> 00:19:56,028
if he does act by rotating a magnetic field
239
00:19:56,884 --> 00:20:02,193
which is mathematically described by some sort of evolution of matter what
240
00:20:02,197 --> 00:20:05,086
some sort of evolution, it's described by unitary operator
241
00:20:06,085 --> 00:20:13,575
then the that he does change the results of his own measurements
242
00:20:16,711 --> 00:20:19,711
he rotates a magnetic field, but it doesn't rotated his apparatus
243
00:20:20,278 --> 00:20:23,995
the result is he is gonna change the probability distributions of his own spin,
244
00:20:25,068 --> 00:20:28,483
but he will not change any of the probabilities of Alice's spin
245
00:20:29,051 --> 00:20:30,497
okay
246
00:20:30,498 --> 00:20:34,515
>> So what you are saying is quantum mechanics always violates locality?
247
00:20:36,521 --> 00:20:44,423
The locality defined by the inability of Bob to influence Alice's measurements
248
00:20:46,054 --> 00:20:49,504
So what's the big deal? Is that what you are gonna ask?
249
00:20:51,734 --> 00:20:55,507
I was guessing what you are gonna ask
250
00:20:58,804 --> 00:21:02,308
>>single particle wave function, put a beam over