-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatterns.nb
More file actions
1371 lines (1250 loc) · 43.2 KB
/
Patterns.nb
File metadata and controls
1371 lines (1250 loc) · 43.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 9.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 157, 7]
NotebookDataLength[ 44076, 1362]
NotebookOptionsPosition[ 39483, 1196]
NotebookOutlinePosition[ 39828, 1211]
CellTagsIndexPosition[ 39785, 1208]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Patterns", "Title",
CellChangeTimes->{{3.6222791615518036`*^9, 3.6222791698598037`*^9}}],
Cell["Patterns are awesome", "Subtitle",
CellChangeTimes->{{3.6222791736788034`*^9, 3.6222791839388037`*^9}}],
Cell[CellGroupData[{
Cell["Some examples", "Section",
CellChangeTimes->{{3.6222792130848036`*^9, 3.6222792241758037`*^9}}],
Cell[CellGroupData[{
Cell["Definitions", "Subsection",
CellChangeTimes->{{3.6222792676438036`*^9, 3.622279273028804*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"f", "[", "x_", "]"}], ":=", " ",
SuperscriptBox["x", "2"]}]], "Input",
CellChangeTimes->{{3.6222791924718037`*^9, 3.6222791944098034`*^9}, {
3.6222792759568033`*^9, 3.6222792835978036`*^9}}],
Cell[BoxData[{
RowBox[{
RowBox[{"g", "[",
RowBox[{"x_", "?", "OddQ"}], "]"}], ":=",
"\"\<Odd.\>\""}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"g", "[",
RowBox[{"x_", "?", "EvenQ"}], "]"}], ":=", " ",
"\"\<Multiple of two.\>\""}]}], "Input",
CellChangeTimes->{{3.6222793454148035`*^9, 3.6222793941268034`*^9}}]
}, Open ]],
Cell[CellGroupData[{
Cell["Replacement Rules", "Subsection",
CellChangeTimes->{{3.6222794003808036`*^9, 3.6222794136358037`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"a", " ",
SuperscriptBox["x", "4"]}], "+",
RowBox[{"b", " ",
SuperscriptBox["x", "3"]}], "+",
RowBox[{"c", " ",
SuperscriptBox["x", "2"]}], "+",
RowBox[{"d", " ", "x"}], " ", "+", " ", "e"}], "/.", " ",
RowBox[{
SuperscriptBox["x", "n_"], "\[RuleDelayed]", " ",
SuperscriptBox["x",
RowBox[{"n", "+", "1"}]]}]}]], "Input",
CellChangeTimes->{{3.6222794216518035`*^9, 3.622279511759804*^9}}],
Cell[BoxData[
RowBox[{"e", "+",
RowBox[{"d", " ", "x"}], "+",
RowBox[{"c", " ",
SuperscriptBox["x", "3"]}], "+",
RowBox[{"b", " ",
SuperscriptBox["x", "4"]}], "+",
RowBox[{"a", " ",
SuperscriptBox["x", "5"]}]}]], "Output",
CellChangeTimes->{3.6222795141758037`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Collect", "Subsection",
CellChangeTimes->{{3.622279542297804*^9, 3.6222795721218033`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Collect", "[",
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{
RowBox[{"Sin", "[", "x", "]"}], "+",
RowBox[{"Cos", "[", "y", "]"}], "+", "1"}], ")"}], "10"], ",",
RowBox[{"Sin", "[", "_", "]"}], ",", "Simplify"}], "]"}]], "Input",
CellChangeTimes->{{3.6222795736388035`*^9, 3.6222796303138037`*^9}}],
Cell[BoxData[
RowBox[{
SuperscriptBox[
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"Cos", "[", "y", "]"}]}], ")"}], "10"], "+",
RowBox[{"5120", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "18"], " ",
RowBox[{"Sin", "[", "x", "]"}]}], "+",
RowBox[{"11520", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "16"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "2"]}], "+",
RowBox[{"15360", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "14"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "3"]}], "+",
RowBox[{"13440", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "12"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "4"]}], "+",
RowBox[{"8064", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "10"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "5"]}], "+",
RowBox[{"3360", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "8"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "6"]}], "+",
RowBox[{"960", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "6"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "7"]}], "+",
RowBox[{"180", " ",
SuperscriptBox[
RowBox[{"Cos", "[",
FractionBox["y", "2"], "]"}], "4"], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "8"]}], "+",
RowBox[{"10", " ",
RowBox[{"(",
RowBox[{"1", "+",
RowBox[{"Cos", "[", "y", "]"}]}], ")"}], " ",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "9"]}], "+",
SuperscriptBox[
RowBox[{"Sin", "[", "x", "]"}], "10"]}]], "Output",
CellChangeTimes->{{3.6222795838438034`*^9, 3.6222796308138037`*^9}}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["List Manipulation", "Subsection",
CellChangeTimes->{{3.622279687231804*^9, 3.6222797126248035`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"tab", "=",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{"i", ",",
SuperscriptBox["i", "2"]}], "}"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "1", " ", ",", "100"}], "}"}]}], "]"}]}]], "Input",
CellChangeTimes->{{3.6222797151948037`*^9, 3.622279743988804*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "1"}], "}"}], ",",
RowBox[{"{",
RowBox[{"2", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"3", ",", "9"}], "}"}], ",",
RowBox[{"{",
RowBox[{"4", ",", "16"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "25"}], "}"}], ",",
RowBox[{"{",
RowBox[{"6", ",", "36"}], "}"}], ",",
RowBox[{"{",
RowBox[{"7", ",", "49"}], "}"}], ",",
RowBox[{"{",
RowBox[{"8", ",", "64"}], "}"}], ",",
RowBox[{"{",
RowBox[{"9", ",", "81"}], "}"}], ",",
RowBox[{"{",
RowBox[{"10", ",", "100"}], "}"}], ",",
RowBox[{"{",
RowBox[{"11", ",", "121"}], "}"}], ",",
RowBox[{"{",
RowBox[{"12", ",", "144"}], "}"}], ",",
RowBox[{"{",
RowBox[{"13", ",", "169"}], "}"}], ",",
RowBox[{"{",
RowBox[{"14", ",", "196"}], "}"}], ",",
RowBox[{"{",
RowBox[{"15", ",", "225"}], "}"}], ",",
RowBox[{"{",
RowBox[{"16", ",", "256"}], "}"}], ",",
RowBox[{"{",
RowBox[{"17", ",", "289"}], "}"}], ",",
RowBox[{"{",
RowBox[{"18", ",", "324"}], "}"}], ",",
RowBox[{"{",
RowBox[{"19", ",", "361"}], "}"}], ",",
RowBox[{"{",
RowBox[{"20", ",", "400"}], "}"}], ",",
RowBox[{"{",
RowBox[{"21", ",", "441"}], "}"}], ",",
RowBox[{"{",
RowBox[{"22", ",", "484"}], "}"}], ",",
RowBox[{"{",
RowBox[{"23", ",", "529"}], "}"}], ",",
RowBox[{"{",
RowBox[{"24", ",", "576"}], "}"}], ",",
RowBox[{"{",
RowBox[{"25", ",", "625"}], "}"}], ",",
RowBox[{"{",
RowBox[{"26", ",", "676"}], "}"}], ",",
RowBox[{"{",
RowBox[{"27", ",", "729"}], "}"}], ",",
RowBox[{"{",
RowBox[{"28", ",", "784"}], "}"}], ",",
RowBox[{"{",
RowBox[{"29", ",", "841"}], "}"}], ",",
RowBox[{"{",
RowBox[{"30", ",", "900"}], "}"}], ",",
RowBox[{"{",
RowBox[{"31", ",", "961"}], "}"}], ",",
RowBox[{"{",
RowBox[{"32", ",", "1024"}], "}"}], ",",
RowBox[{"{",
RowBox[{"33", ",", "1089"}], "}"}], ",",
RowBox[{"{",
RowBox[{"34", ",", "1156"}], "}"}], ",",
RowBox[{"{",
RowBox[{"35", ",", "1225"}], "}"}], ",",
RowBox[{"{",
RowBox[{"36", ",", "1296"}], "}"}], ",",
RowBox[{"{",
RowBox[{"37", ",", "1369"}], "}"}], ",",
RowBox[{"{",
RowBox[{"38", ",", "1444"}], "}"}], ",",
RowBox[{"{",
RowBox[{"39", ",", "1521"}], "}"}], ",",
RowBox[{"{",
RowBox[{"40", ",", "1600"}], "}"}], ",",
RowBox[{"{",
RowBox[{"41", ",", "1681"}], "}"}], ",",
RowBox[{"{",
RowBox[{"42", ",", "1764"}], "}"}], ",",
RowBox[{"{",
RowBox[{"43", ",", "1849"}], "}"}], ",",
RowBox[{"{",
RowBox[{"44", ",", "1936"}], "}"}], ",",
RowBox[{"{",
RowBox[{"45", ",", "2025"}], "}"}], ",",
RowBox[{"{",
RowBox[{"46", ",", "2116"}], "}"}], ",",
RowBox[{"{",
RowBox[{"47", ",", "2209"}], "}"}], ",",
RowBox[{"{",
RowBox[{"48", ",", "2304"}], "}"}], ",",
RowBox[{"{",
RowBox[{"49", ",", "2401"}], "}"}], ",",
RowBox[{"{",
RowBox[{"50", ",", "2500"}], "}"}], ",",
RowBox[{"{",
RowBox[{"51", ",", "2601"}], "}"}], ",",
RowBox[{"{",
RowBox[{"52", ",", "2704"}], "}"}], ",",
RowBox[{"{",
RowBox[{"53", ",", "2809"}], "}"}], ",",
RowBox[{"{",
RowBox[{"54", ",", "2916"}], "}"}], ",",
RowBox[{"{",
RowBox[{"55", ",", "3025"}], "}"}], ",",
RowBox[{"{",
RowBox[{"56", ",", "3136"}], "}"}], ",",
RowBox[{"{",
RowBox[{"57", ",", "3249"}], "}"}], ",",
RowBox[{"{",
RowBox[{"58", ",", "3364"}], "}"}], ",",
RowBox[{"{",
RowBox[{"59", ",", "3481"}], "}"}], ",",
RowBox[{"{",
RowBox[{"60", ",", "3600"}], "}"}], ",",
RowBox[{"{",
RowBox[{"61", ",", "3721"}], "}"}], ",",
RowBox[{"{",
RowBox[{"62", ",", "3844"}], "}"}], ",",
RowBox[{"{",
RowBox[{"63", ",", "3969"}], "}"}], ",",
RowBox[{"{",
RowBox[{"64", ",", "4096"}], "}"}], ",",
RowBox[{"{",
RowBox[{"65", ",", "4225"}], "}"}], ",",
RowBox[{"{",
RowBox[{"66", ",", "4356"}], "}"}], ",",
RowBox[{"{",
RowBox[{"67", ",", "4489"}], "}"}], ",",
RowBox[{"{",
RowBox[{"68", ",", "4624"}], "}"}], ",",
RowBox[{"{",
RowBox[{"69", ",", "4761"}], "}"}], ",",
RowBox[{"{",
RowBox[{"70", ",", "4900"}], "}"}], ",",
RowBox[{"{",
RowBox[{"71", ",", "5041"}], "}"}], ",",
RowBox[{"{",
RowBox[{"72", ",", "5184"}], "}"}], ",",
RowBox[{"{",
RowBox[{"73", ",", "5329"}], "}"}], ",",
RowBox[{"{",
RowBox[{"74", ",", "5476"}], "}"}], ",",
RowBox[{"{",
RowBox[{"75", ",", "5625"}], "}"}], ",",
RowBox[{"{",
RowBox[{"76", ",", "5776"}], "}"}], ",",
RowBox[{"{",
RowBox[{"77", ",", "5929"}], "}"}], ",",
RowBox[{"{",
RowBox[{"78", ",", "6084"}], "}"}], ",",
RowBox[{"{",
RowBox[{"79", ",", "6241"}], "}"}], ",",
RowBox[{"{",
RowBox[{"80", ",", "6400"}], "}"}], ",",
RowBox[{"{",
RowBox[{"81", ",", "6561"}], "}"}], ",",
RowBox[{"{",
RowBox[{"82", ",", "6724"}], "}"}], ",",
RowBox[{"{",
RowBox[{"83", ",", "6889"}], "}"}], ",",
RowBox[{"{",
RowBox[{"84", ",", "7056"}], "}"}], ",",
RowBox[{"{",
RowBox[{"85", ",", "7225"}], "}"}], ",",
RowBox[{"{",
RowBox[{"86", ",", "7396"}], "}"}], ",",
RowBox[{"{",
RowBox[{"87", ",", "7569"}], "}"}], ",",
RowBox[{"{",
RowBox[{"88", ",", "7744"}], "}"}], ",",
RowBox[{"{",
RowBox[{"89", ",", "7921"}], "}"}], ",",
RowBox[{"{",
RowBox[{"90", ",", "8100"}], "}"}], ",",
RowBox[{"{",
RowBox[{"91", ",", "8281"}], "}"}], ",",
RowBox[{"{",
RowBox[{"92", ",", "8464"}], "}"}], ",",
RowBox[{"{",
RowBox[{"93", ",", "8649"}], "}"}], ",",
RowBox[{"{",
RowBox[{"94", ",", "8836"}], "}"}], ",",
RowBox[{"{",
RowBox[{"95", ",", "9025"}], "}"}], ",",
RowBox[{"{",
RowBox[{"96", ",", "9216"}], "}"}], ",",
RowBox[{"{",
RowBox[{"97", ",", "9409"}], "}"}], ",",
RowBox[{"{",
RowBox[{"98", ",", "9604"}], "}"}], ",",
RowBox[{"{",
RowBox[{"99", ",", "9801"}], "}"}], ",",
RowBox[{"{",
RowBox[{"100", ",", "10000"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{{3.6222797326828036`*^9, 3.6222797446198034`*^9}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Cases", "[",
RowBox[{"tab", ",",
RowBox[{"{",
RowBox[{
RowBox[{"_", "?", "PrimeQ"}], ",", "_"}], "}"}]}], "]"}]], "Input",
CellChangeTimes->{{3.622279740304804*^9, 3.6222797677188034`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"2", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"3", ",", "9"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "25"}], "}"}], ",",
RowBox[{"{",
RowBox[{"7", ",", "49"}], "}"}], ",",
RowBox[{"{",
RowBox[{"11", ",", "121"}], "}"}], ",",
RowBox[{"{",
RowBox[{"13", ",", "169"}], "}"}], ",",
RowBox[{"{",
RowBox[{"17", ",", "289"}], "}"}], ",",
RowBox[{"{",
RowBox[{"19", ",", "361"}], "}"}], ",",
RowBox[{"{",
RowBox[{"23", ",", "529"}], "}"}], ",",
RowBox[{"{",
RowBox[{"29", ",", "841"}], "}"}], ",",
RowBox[{"{",
RowBox[{"31", ",", "961"}], "}"}], ",",
RowBox[{"{",
RowBox[{"37", ",", "1369"}], "}"}], ",",
RowBox[{"{",
RowBox[{"41", ",", "1681"}], "}"}], ",",
RowBox[{"{",
RowBox[{"43", ",", "1849"}], "}"}], ",",
RowBox[{"{",
RowBox[{"47", ",", "2209"}], "}"}], ",",
RowBox[{"{",
RowBox[{"53", ",", "2809"}], "}"}], ",",
RowBox[{"{",
RowBox[{"59", ",", "3481"}], "}"}], ",",
RowBox[{"{",
RowBox[{"61", ",", "3721"}], "}"}], ",",
RowBox[{"{",
RowBox[{"67", ",", "4489"}], "}"}], ",",
RowBox[{"{",
RowBox[{"71", ",", "5041"}], "}"}], ",",
RowBox[{"{",
RowBox[{"73", ",", "5329"}], "}"}], ",",
RowBox[{"{",
RowBox[{"79", ",", "6241"}], "}"}], ",",
RowBox[{"{",
RowBox[{"83", ",", "6889"}], "}"}], ",",
RowBox[{"{",
RowBox[{"89", ",", "7921"}], "}"}], ",",
RowBox[{"{",
RowBox[{"97", ",", "9409"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.6222797682218037`*^9}]
}, Open ]]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Basic Patterns", "Section",
CellChangeTimes->{{3.622279812000804*^9, 3.622279819217804*^9}}],
Cell[CellGroupData[{
Cell["Blank", "Subsection",
CellChangeTimes->{{3.6222800271168036`*^9, 3.622280033068804*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Blank", "[", "]"}], " ", "or", " ", "_", " "}]], "Input",
CellChangeTimes->{{3.6222798230258036`*^9, 3.6222798507758036`*^9}}],
Cell["\<\
Any one mathematica object i.e. foo[...].\
\>", "Text",
CellChangeTimes->{{3.6222798681528034`*^9, 3.6222799180588036`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"MatchQ", "[",
RowBox[{
RowBox[{"Foo", "[",
RowBox[{"{",
RowBox[{"1", ",", "djd", ",", " ",
RowBox[{"2", "jkdf"}]}], "}"}], "]"}], ",", "_"}], "]"}]], "Input",
CellChangeTimes->{{3.6222799475758038`*^9, 3.6222799820088034`*^9}}],
Cell[BoxData["True"], "Output",
CellChangeTimes->{3.6222799825088034`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Blank with Head specification", "Subsection",
CellChangeTimes->{{3.6222800374128036`*^9, 3.6222800481718035`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"Blank", "[", "h", "]"}], " ", "or", " ", "_h"}]], "Input",
CellChangeTimes->{{3.6222800513728037`*^9, 3.6222800696748037`*^9},
3.622285314107729*^9}],
Cell["Any one mathematica object with Head h i.e. h[ ...].", "Text",
CellChangeTimes->{{3.6222800779078035`*^9, 3.6222800939358034`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"MatchQ", "[",
RowBox[{
RowBox[{"Foo", "[",
RowBox[{"{",
RowBox[{"1", ",", "djd", ",", " ",
RowBox[{"2", "jkdf"}]}], "}"}], "]"}], ",", "_h"}], "]"}]], "Input",
CellChangeTimes->{3.6222801144008036`*^9}],
Cell[BoxData["False"], "Output",
CellChangeTimes->{3.6222801150888033`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"MatchQ", "[",
RowBox[{
RowBox[{"h", "[",
RowBox[{"{",
RowBox[{"1", ",", "djd", ",", " ",
RowBox[{"2", "jkdf"}]}], "}"}], "]"}], ",", "_h"}], "]"}]], "Input",
CellChangeTimes->{3.6222801216788034`*^9}],
Cell[BoxData["True"], "Output",
CellChangeTimes->{3.622280122863804*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "f", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[", "x_Integer", "]"}], ":=", "True"}], "\[IndentingNewLine]",
RowBox[{"f", "[", "1", "]"}], "\[IndentingNewLine]",
RowBox[{"f", "[", "1.5", "]"}]}], "Input",
CellChangeTimes->{{3.622280314962804*^9, 3.622280354040804*^9}}],
Cell[BoxData["True"], "Output",
CellChangeTimes->{{3.6222803413608036`*^9, 3.6222803544798036`*^9}}],
Cell[BoxData[
RowBox[{"f", "[", "1.5`", "]"}]], "Output",
CellChangeTimes->{{3.6222803413608036`*^9, 3.6222803544808035`*^9}}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["BlankSequence", "Subsection",
CellChangeTimes->{{3.6222801403978033`*^9, 3.6222801493088036`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"BlankSequence", "[", "]"}], " ", "or", " ", "__"}]], "Input",
CellChangeTimes->{{3.622280151436804*^9, 3.6222801590528035`*^9}}],
Cell["\<\
Any sequence of one or more mathematica objects.\
\>", "Text",
CellChangeTimes->{{3.6222800779078035`*^9, 3.6222800939358034`*^9}, {
3.622280172099804*^9, 3.6222801897618036`*^9}}],
Cell[BoxData[
RowBox[{"Clear", "[", "f", "]"}]], "Input",
CellChangeTimes->{{3.6222801996178036`*^9, 3.6222802233528037`*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"f", "[", "x__", "]"}], ":=", " ",
RowBox[{"Plus", "[", "x", "]"}]}]], "Input",
CellChangeTimes->{{3.6222802256548033`*^9, 3.6222802452238035`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"f", "[", "1", "]"}]], "Input",
CellChangeTimes->{{3.622280249193804*^9, 3.622280250974804*^9}}],
Cell[BoxData["1"], "Output",
CellChangeTimes->{3.6222802514528036`*^9, 3.6222856642548137`*^9}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"f", "[",
RowBox[{"x", ",", "y", ",",
RowBox[{"(", GridBox[{
{"1", "2", "3"},
{"5", "3", "6"}
}], ")"}]}], "]"}]], "Input",
CellChangeTimes->{{3.6222802552738037`*^9, 3.6222802612628036`*^9}, {
3.6222856230948133`*^9, 3.6222856412748137`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"1", "+", "x", "+", "y"}], ",",
RowBox[{"2", "+", "x", "+", "y"}], ",",
RowBox[{"3", "+", "x", "+", "y"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"5", "+", "x", "+", "y"}], ",",
RowBox[{"3", "+", "x", "+", "y"}], ",",
RowBox[{"6", "+", "x", "+", "y"}]}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{
3.6222802617638035`*^9, {3.6222856423448133`*^9, 3.6222856655148134`*^9}}]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"x", "+", "y", "+",
RowBox[{"(", GridBox[{
{"1", "2", "3"},
{"5", "3", "6"}
}], ")"}]}]], "Input",
CellChangeTimes->{{3.6222856942948136`*^9, 3.622285697364814*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{
RowBox[{"1", "+", "x", "+", "y"}], ",",
RowBox[{"2", "+", "x", "+", "y"}], ",",
RowBox[{"3", "+", "x", "+", "y"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{
RowBox[{"5", "+", "x", "+", "y"}], ",",
RowBox[{"3", "+", "x", "+", "y"}], ",",
RowBox[{"6", "+", "x", "+", "y"}]}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.6222856981248136`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Naming Patterns", "Subsection",
CellChangeTimes->{{3.6222802793098035`*^9, 3.6222802918508034`*^9}}],
Cell[BoxData[{
RowBox[{"Pattern", "[",
RowBox[{"x", " ", ",", " ", "_"}], "]"}], "\[IndentingNewLine]",
RowBox[{"x", ":", "_"}], "\[IndentingNewLine]", "x_"}], "Input",
CellChangeTimes->{{3.6222803792638035`*^9, 3.6222804205558033`*^9}, {
3.6222804581618032`*^9, 3.6222804638418036`*^9}}],
Cell["\<\
Useful if the matched pattern is to be used in a definition or replacement \
rule. (Use delayed Set (:=) and delayed replace :>\
\>", "Text",
CellChangeTimes->{{3.6222804754778037`*^9, 3.6222805101248035`*^9}, {
3.6222805617138033`*^9, 3.622280595679804*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "f", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[", "x_", "]"}], ":=", " ",
RowBox[{"x", "+",
SuperscriptBox["x", "2"]}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{"2", " ", "x"}], "+",
RowBox[{"3",
SuperscriptBox["x", "2"]}]}], "/.",
RowBox[{"n_Integer", "\[RuleDelayed]", " ",
RowBox[{"n", "+", "1"}]}]}]}], "Input",
CellChangeTimes->{{3.6222805135068035`*^9, 3.6222805555798035`*^9}, {
3.622280601344804*^9, 3.622280609488804*^9}}],
Cell[BoxData[
RowBox[{
RowBox[{"3", " ", "x"}], "+",
RowBox[{"4", " ",
SuperscriptBox["x", "3"]}]}]], "Output",
CellChangeTimes->{3.6222806100968037`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Alternatives", "Subsection",
CellChangeTimes->{{3.6222807356118035`*^9, 3.622280755981804*^9}}],
Cell[BoxData[{
RowBox[{"Alternatives", "[",
RowBox[{"pattern1", ",", "pattern2", ",", "pattern3", ",", "..."}],
"]"}], "\[IndentingNewLine]",
RowBox[{"pattern1", "|", "pattern2", "|", "pattern3", "|", "..."}]}], "Input",
CellChangeTimes->{{3.6222807578268037`*^9, 3.622280799660804*^9}}],
Cell["\<\
Matches anything that matches any of the patterns pattern1, pattern2, \
pattern3, etc.\
\>", "Text",
CellChangeTimes->{{3.6222808021698036`*^9, 3.6222808562398033`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Clear", "[", "f", "]"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"1", "|", "2"}], "]"}], ":=", "0"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[", "x_", "]"}], ":=", "x"}], "\[IndentingNewLine]",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"f", "[", "i", "]"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "1", ",", "5"}], "}"}]}], "]"}]}], "Input",
CellChangeTimes->{{3.6222808616688037`*^9, 3.622280907436804*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"2", ",", "0"}], "}"}], ",",
RowBox[{"{",
RowBox[{"3", ",", "3"}], "}"}], ",",
RowBox[{"{",
RowBox[{"4", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "5"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{3.6222809080308037`*^9, 3.6222858472548137`*^9}]
}, Open ]]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Conditional Patterns", "Section",
CellChangeTimes->{{3.6222806557238035`*^9, 3.6222806802418036`*^9}}],
Cell[CellGroupData[{
Cell["PatternTest", "Subsection",
CellChangeTimes->{{3.6222809305508037`*^9, 3.622280937153804*^9}}],
Cell[BoxData[
RowBox[{"x_", "?", "test"}]], "Input",
CellChangeTimes->{{3.6222809449998035`*^9, 3.6222809688958035`*^9}}],
Cell["Only matches objects x for which test[x] yields true.", "Text",
CellChangeTimes->{{3.6222809753258038`*^9, 3.6222809970138035`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{"Clear", "[", "f", "]"}], ";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_", "?", "OddQ"}], "]"}], ":=",
RowBox[{"x", "+", "1"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[", "x_", "]"}], ":=", "x"}], "\[IndentingNewLine]",
RowBox[{"Table", "[",
RowBox[{
RowBox[{"{",
RowBox[{"i", ",",
RowBox[{"f", "[", "i", "]"}]}], "}"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "1", ",", "6"}], "}"}]}],
"]"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.6222810023648033`*^9, 3.6222810825378036`*^9}}],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"{",
RowBox[{"1", ",", "2"}], "}"}], ",",
RowBox[{"{",
RowBox[{"2", ",", "2"}], "}"}], ",",
RowBox[{"{",
RowBox[{"3", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"4", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"5", ",", "6"}], "}"}], ",",
RowBox[{"{",
RowBox[{"6", ",", "6"}], "}"}]}], "}"}]], "Output",
CellChangeTimes->{{3.6222810611338034`*^9, 3.6222810829218035`*^9},
3.6222859429148135`*^9}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Condition", "Subsection",
CellChangeTimes->{{3.6222810895538034`*^9, 3.6222811174308033`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_", ",", "y_"}], "]"}], "/;",
RowBox[{"x", "\[Equal]", "y"}]}], ":=", "0"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_", ",", "y_"}], "]"}], ":=",
RowBox[{"x", "+", "y"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Table", "[",
RowBox[{
RowBox[{"f", "[",
RowBox[{"i", ",", "j"}], "]"}], ",",
RowBox[{"{",
RowBox[{"i", ",", "1", ",", "4"}], "}"}], ",",
RowBox[{"{",
RowBox[{"j", ",", "1", ",", "4"}], "}"}]}], "]"}], "//",
"MatrixForm"}]}], "Input",
CellChangeTimes->{{3.6222811315198035`*^9, 3.622281210316804*^9}}],
Cell[BoxData[
TagBox[
RowBox[{"(", "\[NoBreak]", GridBox[{
{"0", "3", "4", "5"},
{"3", "0", "5", "6"},
{"4", "5", "0", "7"},
{"5", "6", "7", "0"}
},
GridBoxAlignment->{
"Columns" -> {{Center}}, "ColumnsIndexed" -> {}, "Rows" -> {{Baseline}},
"RowsIndexed" -> {}},
GridBoxSpacings->{"Columns" -> {
Offset[0.27999999999999997`], {
Offset[0.7]},
Offset[0.27999999999999997`]}, "ColumnsIndexed" -> {}, "Rows" -> {
Offset[0.2], {
Offset[0.4]},
Offset[0.2]}, "RowsIndexed" -> {}}], "\[NoBreak]", ")"}],
Function[BoxForm`e$,
MatrixForm[BoxForm`e$]]]], "Output",
CellChangeTimes->{{3.622281203969804*^9, 3.6222812107368035`*^9}}]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Default values", "Subsection",
CellChangeTimes->{{3.6222813411738033`*^9, 3.6222813545678034`*^9}}],
Cell[BoxData[
RowBox[{"x_:", "a"}]], "Input",
CellChangeTimes->{{3.6222813583408036`*^9, 3.6222813837498035`*^9}}],
Cell["Pattern with default value a if omitted.", "Text",
CellChangeTimes->{{3.6222813685488033`*^9, 3.6222813994608035`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "f", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_:", "1"}], "]"}], ":=", "x"}], "\[IndentingNewLine]",
RowBox[{"f", "[", "]"}]}], "Input",
CellChangeTimes->{{3.6222814027628036`*^9, 3.6222814228678036`*^9}}],
Cell[BoxData["1"], "Output",
CellChangeTimes->{3.6222814237738037`*^9, 3.6222860755248137`*^9}]
}, Open ]]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell["Applications", "Section",
CellChangeTimes->{{3.6222814928658037`*^9, 3.622281499061804*^9}}],
Cell[CellGroupData[{
Cell["Create \"functions\" with separate cases", "Subsection",
CellChangeTimes->{{3.6222815018278036`*^9, 3.6222815169328036`*^9}}],
Cell[CellGroupData[{
Cell[BoxData[{
RowBox[{"Clear", "[", "f", "]"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_", "?",
RowBox[{"(",
RowBox[{
RowBox[{"#", ">", "0"}], "&"}], ")"}]}], "]"}], ":=",
RowBox[{"Sin", "[", "x", "]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[",
RowBox[{"x_", "?",
RowBox[{"(",
RowBox[{
RowBox[{"#", "<", "0"}], "&"}], ")"}]}], "]"}], ":=",
RowBox[{"f", "[",
RowBox[{"-", "x"}], "]"}]}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"f", "[", "0.", "]"}], ":=", "1"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{"Plot", "[",
RowBox[{
RowBox[{"f", "[", "x", "]"}], ",",
RowBox[{"{",
RowBox[{"x", ",",
RowBox[{"-", "5"}], ",", "5"}], "}"}], ",",
RowBox[{"PlotRange", "\[Rule]",
RowBox[{"{",
RowBox[{"0", ",", "All"}], "}"}]}]}], "]"}],
"\[IndentingNewLine]"}], "\[IndentingNewLine]"}], "Input",
CellChangeTimes->{{3.622281521627804*^9, 3.6222817479608035`*^9}, {
3.6222861661048136`*^9, 3.6222861706448135`*^9}}],
Cell[BoxData[
GraphicsBox[{{}, {},
{Hue[0.67, 0.6, 0.6], LineBox[CompressedData["
1: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