-
Notifications
You must be signed in to change notification settings - Fork 0
/
PrimeFactorization update 2.nb
8398 lines (8188 loc) · 422 KB
/
PrimeFactorization update 2.nb
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
Notebook[{
Cell[CellGroupData[{
Cell["PrimeFactorization", "Title",
Deletable->False,
TaggingRules->{},
CellEventActions->{Inherited, {"KeyDown", "\t"} :> Replace[SelectionMove[
SelectedNotebook[], After, Cell]; NotebookFind[
SelectedNotebook[], "TabNext", Next, CellTags, AutoScroll -> True,
WrapAround -> True], Blank[NotebookSelection] :> SelectionMove[
SelectedNotebook[], All, CellContents, AutoScroll -> True]],
PassEventsDown -> False, PassEventsUp -> False},
CellChangeTimes->{{3.8690780416940966`*^9, 3.869078049292248*^9}},
CellTags->{"Name", "TabNext", "TemplateCell", "Title"},
CellID->863144461,ExpressionUUID->"71b70152-11b2-4676-b5dd-41ac48cb908a"],
Cell["Format an integer prime factorization with a center dot", "Text",
Deletable->False,
TaggingRules->{},
CellEventActions->{Inherited, {"KeyDown", "\t"} :> Replace[SelectionMove[
SelectedNotebook[], After, Cell]; NotebookFind[
SelectedNotebook[], "TabNext", Next, CellTags, AutoScroll -> True,
WrapAround -> True], Blank[NotebookSelection] :> SelectionMove[
SelectedNotebook[], All, CellContents, AutoScroll -> True]],
PassEventsDown -> False, PassEventsUp -> False},
CellChangeTimes->{{3.869078051547267*^9, 3.8690780631106367`*^9}, {
3.86922641942723*^9, 3.869226420385009*^9}},
CellTags->{"DefaultContent", "Description", "TabNext", "TemplateCell"},
CellID->660820806,ExpressionUUID->"6167abd6-2997-472f-9bfe-40907922e916"],
Cell[CellGroupData[{
Cell[TextData[{
"Definition",
Cell[BoxData[
PaneSelectorBox[{True->
TemplateBox[{"Function",
Cell[
BoxData[
FrameBox[
Cell[
"Define your function using the name you gave in the Title line \
above. You can add input cells and extra code to define additional input \
cases or prerequisites. All definitions, including dependencies, will be \
included in the generated resource function.\n\nThis section should be \
evaluated before creating the Examples section below.", "MoreInfoText"],
Background -> GrayLevel[0.95], FrameMargins -> 20, FrameStyle ->
GrayLevel[0.9], RoundingRadius -> 5, ImageSize -> {
Scaled[0.65], Automatic}]], "MoreInfoText", Deletable -> True,
CellTags -> {"SectionMoreInfoFunction"},
CellMargins -> {{66, 66}, {15, 15}}]},
"MoreInfoOpenerButtonTemplate"]}, Dynamic[
CurrentValue[
EvaluationNotebook[], {TaggingRules, "ResourceCreateNotebook"}]],
ImageSize->Automatic]],ExpressionUUID->
"23c59362-83ba-46e5-8aa4-c085ce8c6d49"]
}], "Section",
Editable->False,
Deletable->False,
TaggingRules->{"TemplateGroupName" -> "Function"},
DefaultNewCellStyle->"Input",
CellTags->{"Definition", "Function", "TemplateCellGroup"},
CellID->292731158,ExpressionUUID->"e5d5ff8c-b4c6-4394-88d5-69f700971052"],
Cell[BoxData[
RowBox[{
RowBox[{"PrimeFactorization", "[", "integer_Integer", "]"}], ":=",
RowBox[{"CenterDot", "@@",
RowBox[{"(",
RowBox[{
RowBox[{"MapApply", "[",
RowBox[{"Superscript", ",",
RowBox[{"FactorInteger", "[", "integer", "]"}]}], "]"}], "/.",
RowBox[{"{",
RowBox[{
RowBox[{"Superscript", "[",
RowBox[{"x_", ",", "1"}], "]"}], "->", "x"}], "}"}]}],
")"}]}]}]], "Input",
TaggingRules->{},
CellChangeTimes->{
3.8690780810778313`*^9, {3.86922667298225*^9, 3.8692266754878025`*^9}, {
3.8692277344686565`*^9, 3.869227738218666*^9}, {3.869227882430743*^9,
3.86922788466374*^9}},
CellTags->"DefaultContent",
CellLabel->"In[237]:=",
CellID->876320555,ExpressionUUID->"c12a9a2c-9510-4212-9077-8f63bc54e12d"]
}, Open ]],
Cell[CellGroupData[{
Cell["Documentation", "Section",
Editable->False,
Deletable->False,
TaggingRules->{"TemplateGroupName" -> "Documentation"},
CellTags->{"Documentation", "TemplateSection"},
CellID->337507785,ExpressionUUID->"1add863c-6563-49ab-8bed-ea77644c17b8"],
Cell[CellGroupData[{
Cell[TextData[{
"Usage",
Cell[BoxData[
PaneSelectorBox[{True->
TemplateBox[{"Usage",
Cell[
BoxData[
FrameBox[
Cell[
TextData[{
"Document input usage cases by first typing an input structure, \
then pressing ",
Cell[
BoxData[
StyleBox[
DynamicBox[
ToBoxes[
If[$OperatingSystem === "MacOSX", "\[ReturnKey]",
"\[EnterKey]"], StandardForm], SingleEvaluation -> True,
Evaluator -> "System"], ShowStringCharacters -> False]]],
" to add a brief explanation of the function\[CloseCurlyQuote]s \
behavior for that structure. Pressing ",
Cell[
BoxData[
StyleBox[
DynamicBox[
ToBoxes[
If[$OperatingSystem === "MacOSX", "\[ReturnKey]",
"\[EnterKey]"], StandardForm], SingleEvaluation -> True,
Evaluator -> "System"], ShowStringCharacters -> False]]],
" repeatedly will create new cases as needed. Every input usage \
case defined above should be demonstrated explicitly here.\n\nSee existing \
documentation pages for examples."}], "MoreInfoText"], Background ->
GrayLevel[0.95], FrameMargins -> 20, FrameStyle -> GrayLevel[0.9],
RoundingRadius -> 5, ImageSize -> {
Scaled[0.65], Automatic}]], "MoreInfoText", Deletable -> True,
CellTags -> {"SectionMoreInfoUsage"},
CellMargins -> {{66, 66}, {15, 15}}]},
"MoreInfoOpenerButtonTemplate"]}, Dynamic[
CurrentValue[
EvaluationNotebook[], {TaggingRules, "ResourceCreateNotebook"}]],
ImageSize->Automatic]],ExpressionUUID->
"e1553f68-0991-4813-bb11-9ac3856e0a0d"]
}], "Subsection",
Editable->False,
Deletable->False,
TaggingRules->{"TemplateGroupName" -> "Usage"},
DefaultNewCellStyle->{"UsageInputs", FontFamily -> "Source Sans Pro"},
CellTags->{"TemplateCellGroup", "Usage"},
CellID->38054786,ExpressionUUID->"f32710a7-bc86-4be6-9b8c-9f237e565666"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"PrimeFactorization", "[",
StyleBox["integer", "TI"], "]"}]], "UsageInputs",
TaggingRules->{},
CellChangeTimes->{{3.869078086533059*^9, 3.869078091750456*^9},
3.8690784106542645`*^9},
FontFamily->"Source Sans Pro",
CellTags->{"DefaultContent", "TabNext"},
CellID->67839508,ExpressionUUID->"d5568f32-0df9-434f-a19e-e5a37551e157"],
Cell[TextData[{
"displays the prime factorization of ",
Cell[BoxData[
StyleBox["integer", "TI"]], "InlineFormula",
FontFamily->"Source Sans Pro",ExpressionUUID->
"23f07e38-ee05-41b1-8537-8c803fbeb7da"],
"."
}], "UsageDescription",
TaggingRules->{},
CellChangeTimes->{{3.869078415437357*^9, 3.8690784249153447`*^9},
3.869226425407286*^9},
CellTags->{"DefaultContent", "TabNext"},
CellID->746063541,ExpressionUUID->"df67d751-56d0-4324-8f7c-0d58e03e48b5"]
}, Open ]],
Cell[TextData[{
"Can you give a good reason why a user might prefer using this function over \
the existing ones, ",
ButtonBox["FormatFactorization",
BaseStyle->"Hyperlink",
ButtonData->{
URL["https://resources.wolframcloud.com/FunctionRepository/resources/\
FormatFactorization"], None},
ButtonNote->
"https://resources.wolframcloud.com/FunctionRepository/resources/\
FormatFactorization"],
" and ",
ButtonBox["InactiveFactorInteger",
BaseStyle->"Hyperlink",
ButtonData->{
URL["https://resources.wolframcloud.com/FunctionRepository/resources/\
InactiveFactorInteger/"], None},
ButtonNote->
"https://resources.wolframcloud.com/FunctionRepository/resources/\
InactiveFactorInteger/"],
"?"
}], "ReviewerComment",
Editable->False,
Deletable->False,
TaggingRules->{
"Signature" ->
"OEM6eJxLYywWcMlMzyxJzAnOTM9LLCktSnVk0w1mCaksSA3mdc3JySwoyUx2Li0qS9UN5gTTfo\
m5qcGcxanJBUamZtmGusG8cK1gXQJ++XkuqSWpRbmZeZnFQN1AFR6JxRmZeem+qSUZ+\
SnBbMEejkC9usGMQU4KnY+d3xWt3N64dIf6RWmvKjOuyJfny/acEnDnenD7xt1VeUBVwU4KXLVh/\
269efFo5ZripoXXj0WLOryRWdz9ZhG7vuWOH3vLrgAAwn5RSQ=="},
CellFrameLabels->{{None,
Cell[
BoxData[
TemplateBox[{
StyleBox[
TemplateBox[{"\"WFR Team\""}, "ReviewerCommentLabelTemplate"],
ShowStringCharacters -> False, StripOnInput -> False],
3.8692163398344871`17.340198002305755*^9},
"CommentCellLabelTemplate"]], Background -> None]}, {None, None}},
CellChangeTimes->{{3.869216340763357*^9, 3.869216409671087*^9}},
CellTags->{"CommentCell", "ReviewerComment"},
CellID->289123324,ExpressionUUID->"4963dcee-b7da-4c1b-a656-6be310df2a7b"],
Cell["\<\
I realize this is duplicating FormatFactorization and InactiveFactorInteger. \
My goal was to use MapApply for a prime factorization based on example from \
the documentation. I like using MapApply to program this function. This \
function uses CenterDot instead of Times which the other functions use.\
\>", "Text", "AuthorComment",
TaggingRules->{},
CellFrameLabels->{{None,
Cell[
BoxData[
TemplateBox[{
StyleBox["\"[email protected]\"", ShowStringCharacters -> False],
3.8692274726565692`17.340199251891157*^9},
"CommentCellLabelTemplate"]], Background -> None]}, {None, None}},
CellChangeTimes->{{3.8692205603390255`*^9, 3.869220645778889*^9}},
FontFamily->"Source Sans Pro",
CellTags->{"AuthorComment", "CommentCell"},
CellID->513413089,ExpressionUUID->"f7cc1d23-a9a7-4953-acdf-cdae6bc7b09a"],
Cell[TextData[{
"Please use Tools > Cells > Insert comment for reviewer to respond to \
comments:\n",
Cell[BoxData[
GraphicsBox[
TagBox[RasterBox[CompressedData["
1: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
BIYgCIqlCN+UCkEQBBX6P9EbfT8=
"], {{0, 75.74053243344582}, {352.4559430071241, 0}}, {0, 255},
ColorFunction->RGBColor,
ImageResolution->{96.012, 96.012},
SmoothingQuality->"High"],
BoxForm`ImageTag["Byte", ColorSpace -> "RGB", Interleaving -> True],
Selectable->False],
DefaultBaseStyle->"ImageGraphics",
ImageSize->Automatic,
ImageSizeRaw->{352.4559430071241, 75.74053243344582},
PlotRange->{{0, 352.4559430071241}, {0, 75.74053243344582}}]], "Input",
ExpressionUUID->"dbc435c2-8335-4ee7-9d50-ba49600b5967"]
}], "ReviewerComment",
Editable->False,
Deletable->False,
TaggingRules->{
"Signature" ->
"OEM6eJxLYywWcMlMzyxJzAnOTM9LLCktSnVk0w1mCaksSA3mdc3JySwoyUx2Li0qS9UN5gTTfo\
m5qcGcxanJBUamZtmGusG8cK1gXQJ++XkuqSWpRbmZeZnFQN1AFR6JxRmZeem+qSUZ+\
SnBbMEejkC9usGMQU4KTw99T6tcJx7SsOO+AvN0f6E9sy3XmW9fp7I85l3l8qwPjUBVwU4KQZ/\
V3buFT1aEdfTe0d/Ef0npW+/8OBetVU17PCRPa8n0AwBg2Uyo"},
CellFrameLabels->{{None,
Cell[
BoxData[
TemplateBox[{
StyleBox[
TemplateBox[{"\"WFR Team\""}, "ReviewerCommentLabelTemplate"],
ShowStringCharacters -> False, StripOnInput -> False],
3.8692265134171071`17.340199144223035*^9},
"CommentCellLabelTemplate"]], Background -> None]}, {None, None}},
CellChangeTimes->{{3.869226514408273*^9, 3.869226568500182*^9}},
CellTags->{"CommentCell", "ReviewerComment"},
CellID->171543770,ExpressionUUID->"cda9f74c-7956-413d-bdf8-0fc4dbe6c632"],
Cell["\<\
Is it possible to omit displaying an exponent of 1 in the factorization?\
\>", "ReviewerComment",
Editable->False,
Deletable->False,
TaggingRules->{
"Signature" ->
"OEM6eJxLYywWcMlMzyxJzAnOTM9LLCktSnVk0w1mCaksSA3mdc3JySwoyUx2Li0qS9UN5gTTfo\
m5qcGcxanJBUamZtmGusG8cK1gXQJ++XkuqSWpRbmZeZnFQN1AFR6JxRmZeem+qSUZ+\
SnBbMEejkC9usGMQU4KOUVVkeG+p5Tfntn75l9Ly0O1/mlzD0/+\
9nK96lbnS6vOvAaqCnZSYF1rkHj0TIXNr1OK67e5TPs4O6i84yGXcH6j6MKEkjIOYQD5/k+b"},
CellFrameLabels->{{None,
Cell[
BoxData[
TemplateBox[{
StyleBox[
TemplateBox[{"\"WFR Team\""}, "ReviewerCommentLabelTemplate"],
ShowStringCharacters -> False, StripOnInput -> False],
3.869226584281763`17.340199152177114*^9},
"CommentCellLabelTemplate"]], Background -> None]}, {None, None}},
CellChangeTimes->{{3.8692266052064137`*^9, 3.8692266230120068`*^9}},
CellTags->{"CommentCell", "ReviewerComment"},
CellID->69377421,ExpressionUUID->"d97ed277-b762-471a-b996-7286c309e2b4"],
Cell["\<\
I used ReplaceAll and pattern matching to eliminate the superscript.\
\>", "AuthorComment",
TaggingRules->{},
CellFrameLabels->{{None,
Cell[
BoxData[
TemplateBox[{
StyleBox[
"\"[email protected]\"", ShowStringCharacters -> False,
StripOnInput -> False], 3.8692274792195604`17.34019925262781*^9},
"CommentCellLabelTemplate"]], Background -> None]}, {None, None}},
CellChangeTimes->{{3.8692274852655754`*^9, 3.8692274976780853`*^9}, {
3.869227584564104*^9, 3.8692276019436646`*^9}, {3.869227743253646*^9,
3.8692277602162123`*^9}},
CellTags->{"AuthorComment", "CommentCell"},
CellID->123504746,ExpressionUUID->"9f8d1636-4140-494b-b740-c52728836c7e"]
}, Open ]],
Cell[CellGroupData[{
Cell[TextData[{
"Details & Options",
Cell[BoxData[
PaneSelectorBox[{True->
TemplateBox[{"Notes",
Cell[
BoxData[
FrameBox[
Cell[
"Give a detailed explanation of how the function is used and \
configured (e.g. acceptable input types, result formats, options \
specifications, background information). This section may include multiple \
cells, bullet lists, tables, hyperlinks and additional styles/structures as \
needed.\n\nAdd any other information that may be relevant, such as when the \
function was first discovered or how and why it is used within a given field. \
Include all relevant background or contextual information related to the \
function, its development, and its usage.", "MoreInfoText"], Background ->
GrayLevel[0.95], FrameMargins -> 20, FrameStyle -> GrayLevel[0.9],
RoundingRadius -> 5, ImageSize -> {
Scaled[0.65], Automatic}]], "MoreInfoText", Deletable -> True,
CellTags -> {"SectionMoreInfoNotes"},
CellMargins -> {{66, 66}, {15, 15}}]},
"MoreInfoOpenerButtonTemplate"]}, Dynamic[
CurrentValue[
EvaluationNotebook[], {TaggingRules, "ResourceCreateNotebook"}]],
ImageSize->Automatic]],ExpressionUUID->
"c846121a-a1d1-4002-ab57-8f0ec6d25dca"]
}], "Subsection",
Editable->False,
Deletable->False,
TaggingRules->{"TemplateGroupName" -> "Notes"},
DefaultNewCellStyle->"Notes",
CellTags->{"Details & Options", "Notes", "TemplateCellGroup"},
CellID->447261062,ExpressionUUID->"8c442b65-7ccf-44a8-8451-f5fbd84e159b"],
Cell["Every integer has a unique prime factorization.", "Notes",
TaggingRules->{},
CellEventActions->{Inherited, {"KeyDown", "\t"} :> Replace[SelectionMove[
SelectedNotebook[], After, Cell]; NotebookFind[
SelectedNotebook[], "TabNext", Next, CellTags, AutoScroll -> True,
WrapAround -> True], Blank[NotebookSelection] :> SelectionMove[
SelectedNotebook[], All, CellContents, AutoScroll -> True]],
PassEventsDown -> False, PassEventsUp -> False},
CellChangeTimes->{{3.8690784280608635`*^9, 3.869078434253552*^9}, {
3.869226456961656*^9, 3.8692264579493675`*^9}},
CellTags->{"DefaultContent", "TabNext"},
CellID->422531486,ExpressionUUID->"08055619-2886-48fd-8992-f398b3253f4e"],
Cell[TextData[{
Cell[BoxData["PrimeFactorization"], "InlineFormula",
FontFamily->"Source Sans Pro",ExpressionUUID->
"302bf675-4fad-4be8-8a31-2014019a3fd2"],
" inserts centered dots between prime numbers raised to positive integer \
powers."
}], "Notes",
TaggingRules->{},
CellChangeTimes->{{3.869078436105152*^9, 3.8690784579412155`*^9}, {
3.8692264665514736`*^9, 3.869226476741355*^9}},
CellID->187888497,ExpressionUUID->"82ef255a-b439-45c4-86be-24e3ff7d20f4"]
}, Open ]]
}, Open ]],
Cell[CellGroupData[{
Cell[TextData[{
"Examples",
Cell[BoxData[
PaneSelectorBox[{True->
TemplateBox[{"Examples",
Cell[
BoxData[
FrameBox[
Cell[
TextData[{
"Demonstrate the function\[CloseCurlyQuote]s usage, starting with \
the most basic use case and describing each example in a preceding text cell.\
\n\nWithin a group, individual examples can be delimited by inserting page \
breaks between them (either using ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"[Right-click]\"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontColor -> GrayLevel[0.28627],
FontSize -> 14, StripOnInput -> False],
StyleBox[
"\" \[FilledRightTriangle] \"", FontFamily ->
"Source Sans Pro", FontSize -> 13.86, FontColor ->
GrayLevel[0.5], StripOnInput -> False],
StyleBox[
"\"Insert Page Break\"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontColor -> GrayLevel[0.28627],
FontSize -> 14, StripOnInput -> False]}, "RowDefault"],
ShowStringCharacters -> False]]],
" between cells or through the menu using ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"Insert\"", FontFamily -> "Source Sans Pro", FontWeight ->
"SemiBold", FontColor -> GrayLevel[0.28627], FontSize -> 14,
StripOnInput -> False],
StyleBox[
"\" \[FilledRightTriangle] \"", FontFamily ->
"Source Sans Pro", FontSize -> 13.86, FontColor ->
GrayLevel[0.5], StripOnInput -> False],
StyleBox[
"\"Page Break\"", FontFamily -> "Source Sans Pro", FontWeight ->
"SemiBold", FontColor -> GrayLevel[0.28627], FontSize -> 14,
StripOnInput -> False]}, "RowDefault"], ShowStringCharacters ->
False]]],
").\n\nExamples should be grouped into Subsection and \
Subsubsection cells similarly to existing documentation pages. Here are some \
typical Subsection names and the types of examples they normally contain:\n \
",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Basic Examples: \"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontSize -> 14, StripOnInput ->
False]}, "RowDefault"], ShowStringCharacters -> False]]],
"most basic function usage\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Scope: \"", FontFamily -> "Source Sans Pro", FontWeight ->
"SemiBold", FontSize -> 14, StripOnInput -> False]},
"RowDefault"], ShowStringCharacters -> False]]],
"input and display conventions, standard computational attributes \
(e.g. threading over lists)\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Options: \"", FontFamily -> "Source Sans Pro", FontWeight ->
"SemiBold", FontSize -> 14, StripOnInput -> False]},
"RowDefault"], ShowStringCharacters -> False]]],
"available options and parameters for the function\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Applications: \"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontSize -> 14, StripOnInput ->
False]}, "RowDefault"], ShowStringCharacters -> False]]],
"standard industry or academic applications\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Properties and Relations: \"", FontFamily ->
"Source Sans Pro", FontWeight -> "SemiBold", FontSize -> 14,
StripOnInput -> False]}, "RowDefault"], ShowStringCharacters ->
False]]], "how the function relates to other functions\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Possible Issues: \"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontSize -> 14, StripOnInput ->
False]}, "RowDefault"], ShowStringCharacters -> False]]],
"limitations or unexpected behavior a user might experience\n ",
Cell[
BoxData[
StyleBox[
TemplateBox[{
StyleBox[
"\"\[FilledSmallSquare] \"", FontColor ->
RGBColor[0.8, 0.043, 0.008], StripOnInput -> False],
StyleBox[
"\"Neat Examples: \"", FontFamily -> "Source Sans Pro",
FontWeight -> "SemiBold", FontSize -> 14, StripOnInput ->
False]}, "RowDefault"], ShowStringCharacters -> False]]],
"particularly interesting, unconventional, or otherwise unique \
usage"}], "MoreInfoText"], Background -> GrayLevel[0.95], FrameMargins -> 20,
FrameStyle -> GrayLevel[0.9], RoundingRadius -> 5, ImageSize -> {
Scaled[0.65], Automatic}]], "MoreInfoText", Deletable -> True,
CellTags -> {"SectionMoreInfoExamples"},
CellMargins -> {{66, 66}, {15, 15}}]},
"MoreInfoOpenerButtonTemplate"]}, Dynamic[
CurrentValue[
EvaluationNotebook[], {TaggingRules, "ResourceCreateNotebook"}]],
ImageSize->Automatic]],ExpressionUUID->
"1c8e4b7a-83ea-4d93-b8ec-71639e8b5dff"]
}], "Section",
Editable->False,
Deletable->False,
TaggingRules->{"TemplateGroupName" -> "Examples"},
CellTags->{"Examples", "TemplateCellGroup"},
CellID->671320372,ExpressionUUID->"11f8a980-0b3d-4e07-90ea-c2899c151931"],
Cell[CellGroupData[{
Cell["Basic Examples", "Subsection",
TaggingRules->{},
CellTags->"DefaultContent",
CellID->619504543,ExpressionUUID->"487f0ea4-df81-442c-9d93-fbb66fffbd31"],
Cell["Find the prime factorization of 2022:", "Text",
TaggingRules->{},
CellChangeTimes->{{3.8690773594595056`*^9, 3.8690773654264946`*^9}},
CellID->17061874,ExpressionUUID->"55a6a512-428c-488e-bb06-59ba120a8caf"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"PrimeFactorization", "[", "2022", "]"}]], "Input",
TaggingRules->{},
CellChangeTimes->{{3.869077337246972*^9, 3.8690773682855043`*^9}},
CellLabel->"In[232]:=",
CellID->285683066,ExpressionUUID->"d07b4db5-7606-4e72-b583-4636b20b0554"],
Cell[BoxData[
RowBox[{"2", "\[CenterDot]", "3", "\[CenterDot]", "337"}]], "Output",
TaggingRules->{},
CellChangeTimes->{3.8690773686914873`*^9, 3.8692277667602005`*^9},
CellLabel->"Out[232]=",
CellID->660124011,ExpressionUUID->"211b7651-787e-44f4-a5c2-585e23716476"]
}, Open ]],
Cell["Find the prime factorization of a factorial:", "Text",
TaggingRules->{},
CellChangeTimes->{{3.869227787558201*^9, 3.869227795917189*^9}},
CellID->118788849,ExpressionUUID->"42ea2943-b0e1-4171-aaf7-ed77c7f3f7cb"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"PrimeFactorization", "[",
RowBox[{"24", "!"}], "]"}]], "Input",
TaggingRules->{},
CellChangeTimes->{{3.8692276877486696`*^9, 3.8692277062376566`*^9}},
CellLabel->"In[234]:=",
CellID->328878059,ExpressionUUID->"380c29ad-736c-4835-8952-34a6973f0327"],
Cell[BoxData[
RowBox[{
TemplateBox[{"2", "22"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"3", "10"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"5", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"7", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"11", "2"},
"Superscript"], "\[CenterDot]", "13", "\[CenterDot]", "17", "\[CenterDot]",
"19", "\[CenterDot]", "23"}]], "Output",
TaggingRules->{},
CellChangeTimes->{
3.8692277065076637`*^9, {3.8692277774522114`*^9, 3.8692278014171915`*^9}},
CellLabel->"Out[234]=",
CellID->284990484,ExpressionUUID->"73d6eba5-c3f2-4450-932d-e3c69e852cec"]
}, Open ]],
Cell["Find the prime factorization of a large random number:", "Text",
TaggingRules->{},
CellChangeTimes->{{3.8690773740800457`*^9, 3.8690773848642645`*^9}},
CellID->240560180,ExpressionUUID->"61b0bea4-5043-4c31-b1ed-4988c40c9efe"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"PrimeFactorization", "[",
RowBox[{"RandomInteger", "[",
SuperscriptBox["10", "12"], "]"}], "]"}]], "Input",
TaggingRules->{},
CellChangeTimes->{{3.869077385921259*^9, 3.869077390468809*^9}},
CellLabel->"In[235]:=",
CellID->48539523,ExpressionUUID->"52f884e6-f22d-427b-acaf-4a2ede42a335"],
Cell[BoxData[
RowBox[{"17", "\[CenterDot]", "54916950617"}]], "Output",
TaggingRules->{},
CellChangeTimes->{3.869077390814803*^9, 3.869227803537213*^9},
CellLabel->"Out[235]=",
CellID->109573534,ExpressionUUID->"bacbe070-8b67-4a4d-ab6f-78b03d56a2c5"]
}, Open ]],
Cell["\<\
Find the prime factorization of the factorial of a large number:\
\>", "Text",
TaggingRules->{},
CellChangeTimes->{{3.869077395655796*^9, 3.8690774086700754`*^9}},
CellID->26901882,ExpressionUUID->"fdd1625d-a4e9-4891-86bc-ea8a9f9b753a"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"PrimeFactorization", "[",
RowBox[{"2018", "!"}], "]"}]], "Input",
TaggingRules->{},
CellChangeTimes->{{3.869077385921259*^9, 3.8690774248416157`*^9}},
CellLabel->"In[236]:=",
CellID->134734758,ExpressionUUID->"a902e2e5-f742-4476-9522-183a37b213e9"],
Cell[BoxData[
RowBox[{
TemplateBox[{"2", "2011"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"3", "1004"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"5", "502"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"7", "334"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"11", "200"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"13", "166"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"17", "124"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"19", "111"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"23", "90"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"29", "71"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"31", "67"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"37", "55"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"41", "50"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"43", "47"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"47", "42"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"53", "38"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"59", "34"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"61", "33"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"67", "30"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"71", "28"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"73", "27"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"79", "25"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"83", "24"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"89", "22"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"97", "20"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"101", "19"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"103", "19"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"107", "18"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"109", "18"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"113", "17"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"127", "15"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"131", "15"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"137", "14"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"139", "14"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"149", "13"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"151", "13"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"157", "12"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"163", "12"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"167", "12"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"173", "11"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"179", "11"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"181", "11"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"191", "10"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"193", "10"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"197", "10"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"199", "10"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"211", "9"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"223", "9"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"227", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"229", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"233", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"239", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"241", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"251", "8"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"257", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"263", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"269", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"271", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"277", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"281", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"283", "7"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"293", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"307", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"311", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"313", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"317", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"331", "6"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"337", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"347", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"349", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"353", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"359", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"367", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"373", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"379", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"383", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"389", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"397", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"401", "5"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"409", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"419", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"421", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"431", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"433", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"439", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"443", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"449", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"457", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"461", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"463", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"467", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"479", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"487", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"491", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"499", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"503", "4"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"509", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"521", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"523", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"541", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"547", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"557", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"563", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"569", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"571", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"577", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"587", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"593", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"599", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"601", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"607", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"613", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"617", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"619", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"631", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"641", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"643", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"647", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"653", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"659", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"661", "3"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"673", "2"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"677", "2"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"683", "2"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"691", "2"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"701", "2"},
"Superscript"], "\[CenterDot]",
TemplateBox[{"709", "2"},