This repository has been archived by the owner on Jun 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphd_backup.sql
2149 lines (2149 loc) · 251 KB
/
phd_backup.sql
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
INSERT INTO math_phds VALUES
(1,'Horton','Goldie Printis','H. J. Ettlinger, M. B. Porter, E. L. Dodd','Ph. D','1916','Functions of limited variation and Lebesgue integrals','',NULL,NULL),
(2,'Wilder','Raymond Louis','R. L. Moore','Ph. D','1923','Concerning continuous curves','',NULL,NULL),
(3,'Lubben','Renke Gustov','R. L. Moore','Ph. D','1925','The double elliptic case of the Lie-Riemann-Helmholtz-Hilbert problem of the foundations of geometry.','',NULL,NULL),
(4,'Whyburn','Gordon Thomas','R. L. Moore','Ph. D','1927','Concerning continua in the plane','',NULL,NULL),
(5,'Whyburn','William Marvin','H. J. Ettlinger','Ph. D','1927','Linear boundary value problems for ordinary differential equations and their associated difference equations','',NULL,NULL),
(6,'Reid','William Thomas','H. J. Ettlinger','Ph. D','1929','Properties of Solutions of an Infinite System of Ordinary Linear Differential Equations of the First Order with Auxiliary Boundary Conditions','',NULL,NULL),
(7,'Roberts','John Henderson','R. L. Moore','Ph. D','1929','Concerning non-dense plane continua','',NULL,NULL),
(8,'Cleveland','Clark Milton','R. L. Moore','Ph. D','1930','On the existence of acyclic curves satisfying certain conditions with respect to a given continuous curve','',NULL,NULL),
(9,'Dorroh','Joe Lee','R. L. Moore','Ph. D','1930','Some metric properties of descriptive planes','',NULL,NULL),
(10,'Hale','William Richard','H. J. Ettlinger','Ph. D','1931','A study of the mathematical processes used in sixteen gainful occupations in Nashville, Tennessee','',NULL,NULL),
(11,'Klipple','Edmund Chester','R. L. Moore','Ph. D','1932','Spaces in which there exists contiguous points','',NULL,NULL),
(12,'Vickery','Charles Watson','R. L. Moore','Ph. D','1932','Spaces in which there exist uncountable','',NULL,NULL),
(13,'Basye','Robert Eugene','R. L. Moore','Ph. D','1933','Simply connected sets','',NULL,NULL),
(14,'Jones','Floyd Burton','R. L. Moore','Ph. D','1935','Concerning R. L. Moore\'s Axiom 5_1','',NULL,NULL),
(15,'Hamilton','Olan Harvey','H. J. Ettlinger','Ph. D','1937','Non-unique solutions of first order ordinary differential equations','',NULL,NULL),
(16,'Eaves','Edgar D.','E. G. Keller','Ph. D','1939','The double-slot, salient field pole problem of the dynamo-electric machine','',NULL,NULL),
(17,'Smith','Herman Walton','H. J. Ettlinger','Ph. D','1939','The oscillation of solutions of the general self-adjoint differential equation of the fourth order with special boundary conditions','',NULL,NULL),
(18,'Straiton','Archie Waugh','S. L. Brown__','Ph. D','1939','Solution of analytic and differential equations by harmonic processes','',NULL,NULL),
(19,'Biesele','Ferdinand Charles','H. S. Vandiver','Ph. D','1941','Substitutes for the commutative law in the theory of semi-groups','',NULL,NULL),
(20,'Miller','Harlan Cross','R. L. Moore','Ph. D','1941','On compact unicoherent continua','',NULL,NULL),
(21,'Sorgenfrey','Robert Henry','R. L. Moore','Ph. D','1941','Concerning triodic continua','',NULL,NULL),
(22,'Swain','Robert Lomond','R. L. Moore','Ph. D','1941','I. Proper and reductive transformations. II. Continua obtained from sequences of simple chains of point sets. III. Distance axioms in Moore spaces. IV. Linear metric space. V. A space in which there may exist uncountable convergent sequences of points','',NULL,NULL),
(23,'Young','Gail Sellers','R. L. Moore','Ph. D','1942','Concerning the outer boundaries of certain connected domains','',NULL,NULL),
(24,'Bing','R. H.','R. L. Moore','Ph. D','1945','Concerning simple plane webbs','',NULL,NULL),
(25,'Edwin Moise','','R. L. Moore','Ph. D','1947','An indecomposable Plane Continuum','',NULL,NULL),
(26,'Anderson','Richard Davis','R. L. Moore','Ph. D','1948','Concerning upper semi-continuous collections of continua','',NULL,NULL),
(27,'Estill','Mary Ellen','R. L. Moore','Ph. D','1949','Concerning Abstract Spaces','',NULL,NULL),
(28,'Copp','George','Hubert S. Wall','Ph. D','1950','Some convergence regions for a continued fraction','',NULL,NULL),
(29,'Lane','Ralph Eldon','Hubert S. Wall','Ph. D','1950','Sequences of points in the complex plane','',NULL,NULL),
(30,'Sharp','James Martin','Simpson Brown','Ph. D','1950','The investigation of mathematical functions with a harmonic synthesizer','',NULL,NULL),
(31,'al-Bassam','Mohammed Ali Abdul-Amir','H. J. Ettlinger','Ph. D','1951','Holmgren-Riesz transform','',NULL,NULL),
(32,'Barrett','John Herbert','H. J. Ettlinger','Ph. D','1951','Ordinary differential equations of non-integral order','',NULL,NULL),
(33,'Burgess','Cecil Edmund','R. L. Moore','Ph. D','1951','Concerning continua and their complementary domains in the plane','',NULL,NULL),
(34,'Faircloth','Olin B.','H. S. Vandiver','Ph. D','1951','On the number of solutions of some general types of equations in a finite field','',NULL,NULL),
(35,'Mac Nerney','John Sheridan','Hubert S. Wall','Ph. D','1951','Continued fractions in which the elements are operators in a linear space','',NULL,NULL),
(36,'Ball','Billy Joe','R. L. Moore','Ph. D','1952','Concerning continuous and equicontinuous collections of arcs','',NULL,NULL),
(37,'Dyer','Sherman Eldon','R. L. Moore','Ph. D','1952','Certain conditions under which the sum of the elements of a','',NULL,NULL),
(38,'Hamstrom','Mary Elizabeth','R. L. Moore','Ph. D','1952','Concerning webs in the plane','',NULL,NULL),
(39,'Porcelli','Pasquale','Hubert S. Wall','Ph. D','1952','Uniform completeness of sets of reciprocals of linear functions','',NULL,NULL),
(40,'Bradford','William Henry','R. N. Haskell','Ph. D','1953','Sub-Biharmonic Functions','',NULL,NULL),
(41,'Clarkson','Mark Hall','H. J. Ettlinger','Ph. D','1953','A second-order theory for three-dimensional wings in supersonic flow','',NULL,NULL),
(42,'Slye','John Marshall','R. L. Moore','Ph. D','1953','Flat spaces for which the Jordan curve theorem holds true','',NULL,NULL),
(43,'Townsend','Bill Braden','Homer V. Craig','Ph. D','1953','Certain metric extensors','',NULL,NULL),
(44,'Abraham','Clair Eugene','H. J. Ettlinger','Ph. D','1954','Partial integro-differential equations and the H-R transform','',NULL,NULL),
(45,'Nicol','Charles Albert','H. S. Vandiver','Ph. D','1954','Generating functions for restricted partitions and the Von Sterneck number','',NULL,NULL),
(46,'Osborn','Roger Cook','E. W. Titt','Ph. D','1954','Integration formulae for the hyperbolic partial differential equation with four independent variables and regions interior to the cone','',NULL,NULL),
(47,'Temple','William Benson','William T. Guy, Jr. and Homer V. Craig','Ph. D','1954','Stieltjes integral representation of convex functions','',NULL,NULL),
(48,'Donaldson','Fletcher William','E. W. Titt','Ph. D','1955','Integration formulae and boundary conditions for the elliptic parabolic partial differential equation with three independent variables','',NULL,NULL),
(49,'Higgins','Theodore Parker','William T. Guy, Jr.','Ph. D','1955','On the Hankel transform','',NULL,NULL),
(50,'Mohat','John Theodore','R. L. Moore','Ph. D','1955','Concerning spirals in the plane','',NULL,NULL),
(51,'Pearson','Bennie Jake','R. L. Moore','Ph. D','1955','A connected point set in the plane which spirals down on each of its points','',NULL,NULL),
(52,'Worthington','Lawrence Grady','E. W. Titt','Ph. D','1955','Integration formulae and boundary conditions for the hyperbolic equation with three independent variables and regions exterior to the cone','',NULL,NULL),
(53,'Armentrout','Steve','R. L. Moore','Ph. D','1956','On spirals in the plane','',NULL,NULL),
(54,'McCulley','William Straight','E. W. Titt','Ph. D','1956','Integration formulae and boundary conditions for the hyperbolic differential equation with three independent variables and regions interior to the cone','',NULL,NULL),
(55,'Wall','Basil Morgan','Hubert S. Wall','Ph. D','1956','Some convergence sets for a continued fraction','',NULL,NULL),
(56,'Weaver','Milo Wesley','H. S. Vandiver','Ph. D','1956','The application of cosets and correspondence in the theory of semi-groups','',NULL,NULL),
(57,'Culwell','Paul Ross','H. J. Ettlinger','Ph. D','1957','Interated Holmgren-Riesz transforms in two dimensions','',NULL,NULL),
(58,'Dawson','David Fleming','Hubert S. Wall','Ph. D','1957','Continued fractions with absolutely convergent even or odd part','',NULL,NULL),
(59,'Kelisky','Richard Paul','H. S. Vandiver','Ph. D','1957','Interrelations between the numbers of Bell, Bernoulli, Euler, Fibonacci, and Lucas','',NULL,NULL),
(60,'Mahavier','William Stockton','R. L. Moore','Ph. D','1957','A theorem on spirals in plane','',NULL,NULL),
(61,'Neuberger','John William','Hubert S. Wall','Ph. D','1957','Continuous products and nonlinear integral equations','',NULL,NULL),
(62,'Appling','William David L.','Hubert S. Wall','Ph. D','1958','Concerning integrals','',NULL,NULL),
(63,'Fitzpatrick','Ben','H. J. Ettlinger','Ph. D','1958','Operator matrices and systems of linear partial differential equations','',NULL,NULL),
(64,'Heller','Robert','Hubert S. Wall','Ph. D','1958','Some convergence theorems for continued fractions','',NULL,NULL),
(65,'Treybig','Leon Bruce','R. L. Moore','Ph. D','1958','Concerning locally peripherally separable spaces','',NULL,NULL),
(66,'Tucker','Don Harrell','H. J. Ettlinger','Ph. D','1958','Absolutely continuous solutions of Uxy=f(x,y,u,u_x ,u_y )','',NULL,NULL),
(67,'Wells','James Howard','Hubert S. Wall','Ph. D','1958','Concerning the Hausdorff inclusion problem','',NULL,NULL),
(68,'Younglove','James Newton','R. L. Moore','Ph. D','1958','Concerning dense metric subspaces of certain nonmetric spaces','',NULL,NULL),
(69,'Helton','Burrell Washington','Hubert S. Wall','Ph. D','1959','Product Integrals','',NULL,NULL),
(70,'Henderson','George Walter','R. L. Moore','Ph. D','1959','Proof that every compact continuum which is topologically equivalent to each of its nondegenerate subcontinua is an arc','',NULL,NULL),
(71,'Batson','Lewis Edwin','William T. Guy, Jr.','Ph. D','1960','On Inversion of the Laplace Transformation by means of a step function','',NULL,NULL),
(72,'Buckholtz','James Donnell','Hubert S. Wall','Ph. D','1960','Concerning polynomial sequences and the distribution of their zeros','',NULL,NULL),
(73,'Deaton','Edmund Ike','H. J. Ettlinger','Ph. D','1960','Solutions of a system of two nonlinear partial differential equations of the first order, with accessory boundary equations','',NULL,NULL),
(74,'Dyer','James Arthur','Alfred Schild','Ph. D','1960','On the consequences of momentum conservation laws in a gravitational theory of the Whitehead type','',NULL,NULL),
(75,'Webb','James Ramsey','R. E. Lane','Ph. D','1960','A Hellinger Integral representation for bounded linear functionals','',NULL,NULL),
(76,'Drobnies','Saul Isaac','Hubert S. Wall','Ph. D','1961','Concerning the uniform polynomial approximation of a bounded function','',NULL,NULL),
(77,'Ellis','Homer Godsey','Hubert S. Wall','Ph. D','1961','Solutions of analytic equations and solutions of first order, analytic differential equations','',NULL,NULL),
(78,'Glasgow','Mark Othello','R. E. Greenwood','Ph. D','1961','Some Marginal Distributions associated with permutation cycles','',NULL,NULL),
(79,'Hayden','Thomas Lee','Hubert S. Wall','Ph. D','1961','A convergence problem for continued fractions','',NULL,NULL),
(80,'Sister Mary Clarice Sparkman','','H. J. Ettlinger','Ph. D','1961','Relationships and analogue between the finite calculus and the limit calculus of polynomials','',NULL,NULL),
(81,'Walston','Dale Edouard','H. J. Ettlinger','Ph. D','1961','An Existence and Uniqueness Theorem for Integro-partial differential equations','',NULL,NULL),
(82,'Worrell','John Mays','R. L. Moore','Ph. D','1961','Concerning scattered point sets','',NULL,NULL),
(83,'Brannen','Joseph Patrick','Hubert S. Wall','Ph. D','1962','On Sequence to Sequence Transformations','',NULL,NULL),
(84,'Cook','Howard','R. L. Moore','Ph. D','1962','On the most general plane closed point set through which it is possible to pass a pseudo-arc','',NULL,NULL),
(85,'Cornette','James Lawson','R. L. Moore','Ph. D','1962','Continuumwise Accessibility','',NULL,NULL),
(86,'Dorroh','James Robert','Hubert S. Wall','Ph. D','1962','Integral Equations in Normed Abelian Groups','',NULL,NULL),
(87,'Haddad','Hadi M. H.','Hubert S. Wall','Ph. D','1962','Convergent Chain Sequences','',NULL,NULL),
(88,'Hansen','Donald Joseph','Don E. Edmondson','Ph. D','1962','Structure theorems for Boolian Matrices','',NULL,NULL),
(89,'Innis','George Seth','H. B. Curtis','Ph. D','1962','On the problem of Type and the Uniformizing Function for Certain Riemann Surfaces','',NULL,NULL),
(90,'Knopp','Paul Joseph','H. B. Curtis','Ph. D','1962','A Topological space of analytic functions','',NULL,NULL),
(91,'Reichhardt','Richard William','R. E. Lane','Ph. D','1962','The integral of a function with respect to a function pair','',NULL,NULL),
(92,'White','John Thomas','William T. Guy, Jr.','Ph. D','1962','A Representation Theorem for the Laplace Transform','',NULL,NULL),
(93,'Atchison','Thomas Andrew','H. B. Curtis','Ph. D','1963','A class of Riemann surfaces','',NULL,NULL),
(94,'Calder','James Richard','Hubert S. Wall','Ph. D','1963','Concerning Completely Convex Sets','',NULL,NULL),
(95,'Clinger','Barbara Ann','Don E. Edmondson','Ph. D','1963','Structure theorems for a class of groups','',NULL,NULL),
(96,'Coleman','William P.','Hubert S. Wall','Ph. D','1963','A study of the structure of linear spaces','',NULL,NULL),
(97,'Darwin','James Thomas','Hubert S. Wall','Ph. D','1963','Some Theorems on functional analysis','',NULL,NULL),
(98,'Ehrlich','Louis William','David M. Young, Jr.','Ph. D','1963','The Block Symmetric Successive Overrelaxation Method','',NULL,NULL),
(99,'Falbo','Clement Earl','H. J. Ettlinger','Ph. D','1963','Some Generalized Green\'s Functions','',NULL,NULL),
(100,'Jolly','Robert Franklin','Hubert S. Wall','Ph. D','1963','Concerning a Functional Inequality','',NULL,NULL),
(101,'Leininger','Charles William','Hubert S. Wall','Ph. D','1963','Concerning a mean integral','',NULL,NULL),
(102,'Perryman','John Keith','William T. Guy, Jr.','Ph. D','1963','A class of integral transforms for functions which are O(e^bt2 ) as t-> infinity','',NULL,NULL),
(103,'Stokes','Russell Aubrey','Hubert S. Wall','Ph. D','1963','An Integral of a function with respect to a function in a rectangular interval','',NULL,NULL),
(104,'Murray','Christopher Brock','Hubert S. Wall','Ph. D','1964','On the mean integral','',NULL,NULL),
(105,'Robinson','Charles Dee','Hubert S. Wall','Ph. D','1964','Orthogonality in normed linear spaces','',NULL,NULL),
(106,'Rodin','Ervin Yechiel-Laszlo','William T. Guy, Jr.','Ph. D','1964','A generalization of the Laplace transform','',NULL,NULL),
(107,'Ryan','Donald Edwin','James E. Scroggs','Ph. D','1964','A Banach algebra of analytic functions','',NULL,NULL),
(108,'Schawe','David Paul','Hubert S. Wall','Ph. D','1964','Cauchy sequences in abstract spaces','',NULL,NULL),
(109,'Stewart','A. D.','H. J. Ettlinger','Ph. D','1964','On the Abel equation in n-dimensions, n equal or more than 2','',NULL,NULL),
(110,'Stocks','Douglas Roscoe','Robert E. Greenwood','Ph. D','1964','Concerning certain lattice paths and lattice point theorems','',NULL,NULL),
(111,'Vick','George Robert','Don E. Edmondson','Ph. D','1964','Psuedo-Metric axioms of a Euclidean geometry','',NULL,NULL),
(112,'Wang','Hsuan-Heng','Robert T. Gregory','Ph. D','1964','On the tridiagonalizaton of a non-Hermitian matrix using similarity transformations','',NULL,NULL),
(113,'Whitmore','Ralph Martin','H. J. Ettlinger','Ph. D','1964','On the mixed partial derivative operator and its inverse','',NULL,NULL),
(114,'Zund','Joe David','Alfred Schild','Ph. D','1964','Degenerate fields with twisting rays','',NULL,NULL),
(115,'Baker','Blanche Joanne Monger','R. L. Moore','Ph. D','1965','Concerning uncountable collections of triods','',NULL,NULL),
(116,'Baker','Harvey Lee','R. L. Moore','Ph. D','1965','Complete amonotonic collections','',NULL,NULL),
(117,'Borm','Alfred Ervin','Don E. Edmondson','Ph. D','1965','On the lattice of continuous functions on a completely regular G(d)-space','',NULL,NULL),
(118,'Elliott','Roger William','Robert T. Gregory','Ph. D','1965','A model for a fact retrieval system','',NULL,NULL),
(119,'Hudson','Francis Marion','William T. Guy, Jr.','Ph. D','1965','A generalization of the finite Fourier transformations','',NULL,NULL),
(120,'Maher','Laurence Paul','Hubert S. Wall','Ph. D','1965','A generalization of the real-number axioms','',NULL,NULL),
(121,'Pratt','Terrence Wendall','Robert T. Gregory','Ph. D','1965','Syntax-directed translation for experimental programming languages','',NULL,NULL),
(122,'Reed','Dennis Keith','R. L. Moore','Ph. D','1965','Concerning upper semi-continuous collections of finite point sets','',NULL,NULL),
(123,'Roach','Everett Dwight','Hubert S. Wall','Ph. D','1965','An integral','',NULL,NULL),
(124,'Tulloch','Lynn Hardyn','H. J. Ettlinger','Ph. D','1965','Operation solution of partial derivative equations of hyperbolic and parabolic type','',NULL,NULL),
(125,'Young','Sam Wayne','Hubert S. Wall','Ph. D','1965','Uniform completeness of sets generated by a single function','',NULL,NULL),
(126,'Boullion','Thomas Loris','Patrick L. Odell','Ph. D','1966','Contributions to the theory of pseudo inverses','',NULL,NULL),
(127,'Bowman','Robert Hunt','Homer V. Craig','Ph. D','1966','Contribution to the theory of extensive differentiation and related topics','',NULL,NULL),
(128,'Carlisle','Charles Harry','Milo W. Weaver','Ph. D','1966','A lattice of partitions on a group','',NULL,NULL),
(129,'Cude','Joe Ebeling','Don E. Edmondson','Ph. D','1966','Compact integral domains with finite characteristic','',NULL,NULL),
(130,'Davis','Roy Dale','R. L. Moore','Ph. D','1966','Concerning the sides from which certain sequences of arcs converge to a compact irreducible continuum','',NULL,NULL),
(131,'Davis','Thomas Franklin','Don E. Edmondson','Ph. D','1966','(f)-derivations on a ring','',NULL,NULL),
(132,'Falconer','David Ross','Patrick L. Odell','Ph. D','1966','Contributions to the theory of numerical simulation','',NULL,NULL),
(133,'Frank','Thurman Gustav','David M. Young, Jr.','Ph. D','1966','Error bounds on numerical solutions of Dirichlet problems for quasilinear elliptic equations','',NULL,NULL),
(134,'Gray','Henry Luther','William T. Guy, Jr.','Ph. D','1966','The Holmgren-Riesz transform and its applications','',NULL,NULL),
(135,'Hadlock','Frank Owen','Clarence Coates, Jr. and Patrick L. Odell','Ph. D','1966','Realization of sequential machines with threshold elements','',NULL,NULL),
(136,'Harrell','Carl Edward','Hubert S. Wall','Ph. D','1966','Concerning sequence to sequence transformations','',NULL,NULL),
(137,'Ikebe','Yasuhiko','Elliott Ward Cheney, Jr.','Ph. D','1966','A study of operators in approximation theory','',NULL,NULL),
(138,'Kowalik','Virgil Cecil','H. J. Ettlinger','Ph. D','1966','Concerning the nonlinear differential equations H^1 (x)= f(x;H(x)),
with elements in E^2','',NULL,NULL),
(139,'Lewis','Truman Orville','Patrick L. Odell','Ph. D','1966','Application of the theory of generalized matrix inversion to statistics','',NULL,NULL),
(140,'Mayes','Vivienne Lucille Malone','Don E. Edmondson','Ph. D','1966','A structure problem in asymptotic analysis','',NULL,NULL),
(141,'McEwen','Henry Nylon','Don E. Edmondson','Ph. D','1966','Automorphisms of a class of finite groups','',NULL,NULL),
(142,'Meicler','Marcel','Patrick L. Odell','Ph. D','1966','Weighted generalized inverses with minimal p and q norms','',NULL,NULL),
(143,'Miller','Max Karlson','William T. Guy, Jr.','Ph. D','1966','Numerical inversion of the Laplace transform by the use of Jacobi polynomials','',NULL,NULL),
(144,'Molloy','Mary of the Assumption','Hubert S. Wall','Ph. D','1966','A substitution theorem for a Stieltjes integral','',NULL,NULL),
(145,'Morris','Peter Don','Howard E. Lacey','Ph. D','1966','Spaces of continuous functions on dispersed sets','',NULL,NULL),
(146,'Peek','Darwin Eugene','Hubert S. Wall','Ph. D','1966','Pointwise limits of sequences of continuous functions','',NULL,NULL),
(147,'Reed','Coke Stevenson','Hubert S. Wall','Ph. D','1966','Concerning pointwise limits of sequences of functions','',NULL,NULL),
(148,'Roach','Francis Aubra','Hubert S. Wall','Ph. D','1966','Concerning the value regions associated with a certain type of continued fraction','',NULL,NULL),
(149,'Rogers','Jack Wyndall','R. L. Moore','Ph. D','1966','A space whose regions are the simple domains of another space','',NULL,NULL),
(150,'Scheiblich','Herman Edward','Don E. Edmondson','Ph. D','1966','Congruences on an inverse semigroup','',NULL,NULL),
(151,'Secker','Martin Dayss','R. L. Moore','Ph. D','1966','Reversibly continuous bisensed transformations of an annulus into itself','',NULL,NULL),
(152,'Sheffield','Miller','William T. Guy, Jr.','Ph. D','1966','Block partitioned matrix theory and solution of systems of certain partial differential equations','',NULL,NULL),
(153,'Steib','Michael Lee','Hubert S. Wall','Ph. D','1966','Linear transformations in a function space','',NULL,NULL),
(154,'Tatikonda','Lakshmi Umavijaya','Patrick L. Odell','Ph. D','1966','Interval estimation of a stimulus levels of order infinity in sensitivity testing','',NULL,NULL),
(155,'Tucker','Charles Thomas','Hubert S. Wall','Ph. D','1966','Pointwise limits of quasi-continuous functions','',NULL,NULL),
(156,'Williams','Bennie Burns','H. J. Ettlinger','Ph. D','1966','An integral equation and the related differential equation boundary problem','',NULL,NULL),
(157,'Wulbert','Daniel Eliot','Elliott Ward Cheney, Jr.','Ph. D','1966','Continuity of metric projections\' approximation theory in a normed linear lattice','',NULL,NULL),
(158,'Bethel','Edward Lee','Hubert S. Wall','Ph. D','1967','Concerning metric spaces','',NULL,NULL),
(159,'Brown','Jack Bethel','Hubert S. Wall','Ph. D','1967','Concerning connected simple graphs','',NULL,NULL),
(160,'Businger','Peter Arthur','Robert T. Gregory','Ph. D','1967','Matrix scaling with respect to the maximum-norm, the sum-norm,','',NULL,NULL),
(161,'Clarkson','Llayron Leon','Hubert S. Wall','Ph. D','1967','A theorem concerning product integrals','',NULL,NULL),
(162,'Cook','David Edwin','R. L. Moore','Ph. D','1967','Concerning compact point sets with noncompact closures','',NULL,NULL),
(163,'Debney','George Charles','Roy P. Kerr','Ph. D','1967','Killing vectors in empty, algebraically special Einstein manifolds with diverging ray congruences','',NULL,NULL),
(164,'Dahlke','Harold Stanley','Hubert S. Wall','Ph. D','1967','Certain linear transformations in a space of functions of two variables','',NULL,NULL),
(165,'Farnsworth','David Leroy','Roy P. Kerr','Ph. D','1967','Homogeneous dust filled cosmological models','',NULL,NULL),
(166,'Hebert','Delma Joseph','Howard E. Lacey','Ph. D','1967','Compact Hausdorff spaces which are supports of regular Borel measures','',NULL,NULL),
(167,'Hinrichsen','John Walter','R. L. Moore','Ph. D','1967','Certain web-like continua','',NULL,NULL),
(168,'Huggins','Frank Norris','Hubert S. Wall','Ph. D','1967','Bounded slope variation and the Hellinger integral','',NULL,NULL),
(169,'Kirk','Joe Eckley','Howard B. Curtis, Jr.','Ph. D','1967','Representation of uniformizing functions for certain simply and doubly connected Riemann surfaces','',NULL,NULL),
(170,'Meek','James Latham','Howard B. Curtis, Jr.','Ph. D','1967','Fatou values of normal subharmonic functions','',NULL,NULL),
(171,'Morey','Philip Stockton','Homer V. Craig','Ph. D','1967','Contributions to the theory of higher degree extensors and related topics','',NULL,NULL),
(172,'Newman','Thomas Gerald','Don E. Edmondson','Ph. D','1967','Homomorphic images of compactly generated lattices','',NULL,NULL),
(173,'O\'connor','Joel Leslie','R. L. Moore','Ph. D','1967','Holes in two-dimensional space','',NULL,NULL),
(174,'Scanlon','Charles Harris','Hubert S. Wall','Ph. D','1967','Concerning lengths for continuous and noncontinuous curves','',NULL,NULL),
(175,'Senechalle','David Albert','Hubert S. Wall','Ph. D','1967','A characterization of inner product spaces','',NULL,NULL),
(176,'Vance','Joseph Frances','Hubert S. Wall','Ph. D','1967','A representation theorem for bounded linear functionals','',NULL,NULL),
(177,'Bailey','Johnny Matt','Howard E. Lacey','Ph. D','1968','A study of left-prime ideals in topological rings','',NULL,NULL),
(178,'Baker','Johnnie Warren','Elliott Ward Cheney, Jr.','Ph. D','1968','Some uncomplemented subspaces of C(X) of the type C(Y)','',NULL,NULL),
(179,'Bednar','Jonnie Bee','Howard E. Lacey','Ph. D','1968','Compact convex sets and continuous affine functions','',NULL,NULL),
(180,'Chatfield','John Albert','Hubert S. Wall','Ph. D','1968','Existence of product integrals','',NULL,NULL),
(181,'Clark','William Dean','William T. Guy, Jr.','Ph. D','1968','Infinite series transformations and their applications','',NULL,NULL),
(182,'Cobb','Gary Wayne','Hubert S. Wall','Ph. D','1968','Inner product-type transformations','',NULL,NULL),
(183,'Coppin','Charles Arthur','Hubert S. Wall','Ph. D','1968','Concerning an integral and number sets dense in an interval','',NULL,NULL),
(184,'Crim','Sterling Cromwell','William T. Guy, Jr.','Ph. D','1968','The two-dimensional Z transform with real domain and parameters','',NULL,NULL),
(185,'Evans','Noel Dee','Howard E. Lacey','Ph. D','1968','Functors in categories of Banach spaces','',NULL,NULL),
(186,'Farmer','Charles Henry','Robert E. Greenwood','Ph. D','1968','Pseudo-mixing sequences of random variables','',NULL,NULL),
(187,'Garret','Bert Dee','Hubert S. Wall','Ph. D','1968','Concerning pointwise discontinuous functions','',NULL,NULL),
(188,'Green','John William','R. L. Moore','Ph. D','1968','Concerning the separation of certain plane-like spaces by compact dendrons','',NULL,NULL),
(189,'Guseman','Lawrence Frank','Howard E. Lacey','Ph. D','1968','Spaces of Affine continuous functions','',NULL,NULL),
(190,'Hardy','John Wellden','Howard E. Lacey','Ph. D','1968','Regular Borel measures on compact spaces','',NULL,NULL),
(191,'Johnson','Lee Murphy','William T. Guy, Jr.','Ph. D','1968','An operational calculus on real valued set functions','',NULL,NULL),
(192,'Manougian','Manoug Nishan','H. J. Ettlinger','Ph. D','1968','On the Perron integral and solutions to partial differential equations','',NULL,NULL),
(193,'Muecke','Herbert Oscar','Howard B. Curtis, Jr.','Ph. D','1968','Some normal families of rational functions','',NULL,NULL),
(194,'Northcutt','Robert Allan','H. J. Ettlinger','Ph. D','1968','Perron type differential and integral inequalities','',NULL,NULL),
(195,'Proffitt','Michael Herry','R. L. Moore','Ph. D','1968','Concerning uncountable collections of mutually exclusive compact continua','',NULL,NULL),
(196,'Sawey','Bennett Charles','Hubert S. Wall','Ph. D','1968','On a generalization of continuity','',NULL,NULL),
(197,'Souchek','Julianne','Howard B. Curtis, Jr.','Ph. D','1968','Rings of analytic functions','',NULL,NULL),
(198,'Turlington','Boyce Lynn','William T. Guy, Jr.','Ph. D','1968','Numerical calculation of the Laplace transform by the use of Legendre polynomials','',NULL,NULL),
(199,'Vargas','Robert William','Elliott Ward Cheney, Jr.','Ph. D','1968','On the (beta)-topology on C(X)','',NULL,NULL),
(200,'Brodie','Richard Neal','William T. Guy, Jr.','Ph. D','1969','On properties of certain testing spaces','',NULL,NULL),
(201,'Brooks','Sam Raymond','Milo W. Weaver','Ph. D','1969','Orbit-like relations on binary and N-ary groups','',NULL,NULL),
(202,'Hayes','Stanley Earl','Hubert S. Wall','Ph. D','1969','Concerning Stieltjes Integrals','',NULL,NULL),
(203,'Huffman','Louie Clarence','William T. Guy, Jr.','Ph. D','1969','Generalized functions of two discrete variables','',NULL,NULL),
(204,'Jackson','Robert Everett','R. L. Moore','Ph. D','1969','Concerning certain plane-like domains','',NULL,NULL),
(205,'Kim','Gil Chang','Robert T. Gregory','Ph. D','1969','Bounds and location theorems of the Eigenvalues of matrices partitioned into blocks','',NULL,NULL),
(206,'Klingman','Darwin Dee','Abraham Charnes','Ph. D','1969','On some unimodular and boolean mathematical programming problems','',NULL,NULL),
(207,'Lamb','John Fabyan','Don E. Edmondson','Ph. D','1969','The structure of Hjelmslev space: a generalization of projective space','',NULL,NULL),
(208,'Mauldin','Richard Daniel','Hubert S. Wall','Ph. D','1969','On Baire systems of functions','',NULL,NULL),
(209,'Phillips','David Franklin','Hubert S. Wall','Ph. D','1969','Concerning simple graphs dense in the plane','',NULL,NULL),
(210,'Purifoy','Jesse Allen','Hubert S. Wall and R. L. Moore','Ph. D','1969','Some separation theorems','',NULL,NULL),
(211,'Shaw','Joe William','Hubert S. Wall','Ph. D','1969','Convergence regions and value regions for continued fractions','',NULL,NULL),
(212,'Slotterbeck','Oberta Ann','John R. Durbin','Ph. D','1969','Factor coverings of groups','',NULL,NULL),
(213,'Smith','Dorothy Powell','Don E. Edmondson','Ph. D','1969','Some results in Brouwerian lattices','',NULL,NULL),
(214,'Stevenson','Nell Elizabeth','R. L. Moore','Ph. D','1969','Concerning indecomposable continua and upper semi-continuous','',NULL,NULL),
(215,'Wilks','Charles Edward','Woodrow W. Bledsoe','Ph. D','1969','The regularity of a product measure using regular conditional measure','',NULL,NULL),
(216,'Anderson','Bill Delano','Elliott Ward Cheney, Jr.','Ph. D','1970','Extensions and projections in spaces of continuous functions','',NULL,NULL),
(217,'Anderson','Robert Brockett','Woodrow W. Bledsoe','Ph. D','1970','Some theoretical aspects of automatic theorem proving','',NULL,NULL),
(218,'Barton','Calvin Pascal','Robert E. Greenwood','Ph. D','1970','The rectilinear crossing number for complete simple graphs in E2','',NULL,NULL),
(219,'Green','Merry Margaret','John R. Durbin','Ph. D','1970','Groups with a characteristic cyclic series','',NULL,NULL),
(220,'Griffith','Hugh Wallace','Robert T. Gregory','Ph. D','1970','Preliminary investigations using interval arithmetic in the numerical evaluations of polynomials','',NULL,NULL),
(221,'Helton','Jon Craig','Hubert S. Wall','Ph. D','1970','Concerning linear and nonlinear sequence to sequence transformations','',NULL,NULL),
(222,'Hensley','Elmer Lee','Robert E. Greenwood','Ph. D','1970','Finite sets with special minimal properties','',NULL,NULL),
(223,'Hibbs','Edwin Bulian','Hubert S. Wall','Ph. D','1970','On length and variation of simple graphs','',NULL,NULL),
(224,'Hummel','Kenneth Earl','Efraim Armendariz','Ph. D','1970','Restricted semiprimary rings','',NULL,NULL),
(225,'Lane','Morton Noel','Abraham Charnes','Ph. D','1970','Goal programming and satisficing models in economic analysis','',NULL,NULL),
(226,'McDonald','Alvis Edward','David M. Young, Jr.','Ph. D','1970','A multiplicity-independent, global iteration for meromorphic functions','',NULL,NULL),
(227,'Mezzino','Michael Joseph','Roy P. Kerr','Ph. D','1970','p-points in topological spaces','',NULL,NULL),
(228,'Moreland','Robert A.','Robert E. Greenwood','Ph. D','1970','Numerical integration of analytic functions','',NULL,NULL),
(229,'Price','Kenneth Hugh','Elliott Ward Cheney, Jr.','Ph. D','1970','Projections and approximation in a normed linear space','',NULL,NULL),
(230,'Webb','Jerry Claude','David M. Young, Jr.','Ph. D','1970','Finite-difference methods for a harmonic mixed boundary value problem','',NULL,NULL),
(231,'Wilson','Richard Gordon','Roy P. Kerr','Ph. D','1970','Sequential function spaces','',NULL,NULL),
(232,'Asar','Ali Osman','John R. Durbin','Ph. D','1971','Conjugacy theorems in locally finite groups','',NULL,NULL),
(233,'Bean','William Clifton','Howard V. Craig','Ph. D','1971','On certain extensor structures in the calculus of variations','',NULL,NULL),
(234,'Boyer','Robert Stephen','Woodrow W. Bledsoe','Ph. D','1971','Locking: a restriction of resolution','',NULL,NULL),
(235,'Chance','Joseph Edgar','Robert E. Greenwood','Ph. D','1971','Group exponential polynominals and enumeration of paths on a lattice','',NULL,NULL),
(236,'Chobot','Michal','Abraham Charnes','Ph. D','1971','Non-cooperative game theory and industrial competition','',NULL,NULL),
(237,'Duplissey','Claude Vernon','Galen L. Seever','Ph. D','1971','Contractive projections in abstract Banach function spaces','',NULL,NULL),
(238,'Hickey','Jimmy Ray','William T. Guy, Jr.','Ph. D','1971','A generalized Mellin transform','',NULL,NULL),
(239,'Hitz','Reinhart Green','Hubert S. Wall','Ph. D','1971','Concerning continued fractions','',NULL,NULL),
(240,'Kincaid','David Ronald','David M. Young, Jr.','Ph. D','1971','An analysis of a class of norms of iterative methods for systems of linear equations','',NULL,NULL),
(241,'McDonald','Gary Robert','Efraim Armendariz','Ph. D','1971','Maximal quotient rings and S-rings','',NULL,NULL),
(242,'McPherson','Ronald Victor','Howard E. Lacey','Ph. D','1971','On some classes of Banach spaces whose duals are abstract L-spaces','',NULL,NULL),
(243,'Rhodes','Joe Bill','Don E. Edmondson','Ph. D','1971','Modularity and decomposition of semilattices','',NULL,NULL),
(244,'Wilson','Larry Wayne','William T. Guy, Jr.','Ph. D','1971','Laplace-Stieltjes transform of Mikusinski operator functions','',NULL,NULL),
(245,'Lankford','IV','Woodrow. W. Bledsoe','Ph. D','1972','Equality atom term locking','',NULL,NULL),
(246,'Pyle','Ernest Seaborn','Sterling. K. Berberian','Ph. D','1972','On maximal rings of quotients of finite Baer*-rings','',NULL,NULL),
(247,'Richert','Arthur','Robert E. Greenwood','Ph. D','1972','Numerical integration facilitated by polynominals in e(^x)','',NULL,NULL),
(248,'Sharpley','Robert Caldwell','George G. Lorentz','Ph. D','1972','Interpolation of operators in function spaces','',NULL,NULL),
(249,'Sorenson','Stephen William','Abraham Charnes','Ph. D','1972','A mathematical theory of coalitions and Competition in Resource Development','',NULL,NULL),
(250,'Underhill','William Vance','Howard E. Lacey and Hubert S. Wall','Ph. D','1972','Some summability theorems concerning a certain class of sequences','',NULL,NULL),
(251,'Camden','John Michael','Robert E. Greenwood','Ph. D','1973','On a Menger graph distance problem','',NULL,NULL),
(252,'Houston','Evan Green','Stephen J. McAdam','Ph. D','1973','Chains of primes in a Noetherian domain','',NULL,NULL),
(253,'Most','Bernard Manuel','Peter W. M. John','Ph. D','1973','On resistance of balanced incomplete block designs','',NULL,NULL),
(254,'Nilsson','David Otto','William T. Guy, Jr.','Ph. D','1973','On tensors and extensors having complex components','',NULL,NULL),
(255,'Broussard','Lois Mary','William T. Eaton','Ph. D','1974','Sums of solid n-spheres','',NULL,NULL),
(256,'Copley','Patricia Ann','Larry L. Schumaker','Ph. D','1974','Structure and characterization of pLq-splines','',NULL,NULL),
(257,'Ewing','Richard Edward','John R. Cannon','Ph. D','1974','The numerical approximation of certain parabolic equations backward in time via Sobolev equations','',NULL,NULL),
(258,'Farmer','Katherine Bolling','John R. Durbin','Ph. D','1974','Representations of wreath products','',NULL,NULL),
(259,'Hamilton','Jon Warren','John E. Gilbert','Ph. D','1974','Harmonic analysis on SO(3)','',NULL,NULL),
(260,'Kilgore','Theodore Albert','Elliott Ward Cheney, Jr.','Ph. D','1974','Optimization of the Lagrange interpolation process','',NULL,NULL),
(261,'Mareth','William Joseph','John E. Gilbert','Ph. D','1974','Topics in harmonic analysis with applications to abstract Besov and Sobolev spaces','',NULL,NULL),
(262,'Rodi','Stephen Bellew','John E. Gilbert','Ph. D','1974','Stone-Weierstrass properties in some commutative Banach algebras','',NULL,NULL),
(263,'Lyche','Tom Johan Wilborg','Larry L. Schumaker','Ph. D','1975','Discrete polynomial spline approximation methods','',NULL,NULL),
(264,'May','Coy Lewis','Newcomb Greenleaf','Ph. D','1975','Automorphism groups of compact Klein surfaces with boundary','',NULL,NULL),
(265,'Preston','Richard Rogers','Newcomb Greenleaf','Ph. D','1975','Fundamental domains and projective structures on compact Klein surfaces','',NULL,NULL),
(266,'Zimmerman','Wayne Joseph','Abraham Charnes','Ph. D','1975','Topics in network scheduling','',NULL,NULL),
(267,'Goth','John Andrew','John R. Durbin','Ph. D','1976','Wreath products with supersolvable automorphism groups','',NULL,NULL),
(268,'Dawes','Robert Leon __','Ralph E. Showalter','Ph. D','1977','A degenerate evolution equation for fluid flow in multi-porous media','',NULL,NULL),
(269,'Godfrey','James Phillip','Abraham Charnes','Ph. D','1977','Goal interval methods for some problems of economic policy and stabilization','',NULL,NULL),
(270,'Lewis','Ira Wayne','R. H. Bing','Ph. D','1977','Stable homeomorphisms on the pseudo-arc','',NULL,NULL),
(271,'Lindsay III','James Warren','Howard E. Lacey','Ph. D','1977','Studies in local unconditional structure in Banach spaces and characterizations of complex predual L1-spaces','',NULL,NULL),
(272,'Olson','Pearl Little','Newcomb Greenleaf','Ph. D','1977','Difference relations and algebra: a constructive study','',NULL,NULL),
(273,'Rooney','Martin Malcolm','Ralph E. Showalter','Ph. D','1977','Galerkin approximation of some nonlinear partial differential equations modeling long waves in shallow water','',NULL,NULL),
(274,'Seiford','Lawrence Martin','Abraham Charnes','Ph. D','1977','Entropic solutions and disruption solutions for n-person games','',NULL,NULL),
(275,'Yuan','Stephen Hsin-Sun','Peter W. M. John','Ph. D','1977','Topics in partially balanced designs','',NULL,NULL),
(276,'Berman','David Roy','Anthony A. Iarrobino','Ph. D','1978','Hilbert functions of vector spaces of forms','',NULL,NULL),
(277,'Richter','Gary Hardin','R. H. Bing','Ph. D','1978','Some properties of patched 2-spheres','',NULL,NULL),
(278,'Shaw','Terry Dean','Klaus R. Bichteler','Ph. D','1978','Sample path properties of continuous local Martingales','',NULL,NULL),
(279,'Wolfe','Michael David','Charles N. Friedman','Ph. D','1978','Asymptomatic behavior of solutions of the radical Schroedinger equation and applications to long-range potential scattering','',NULL,NULL),
(280,'Bourgeois','Brian Allen','John D. Dollard','Ph. D','1979','Quantum-mechanical scattering theory for long-range oscillatory potentials','',NULL,NULL),
(281,'Di Benedetto','Emmanuele','Ralph E. Showalter','Ph. D','1979','Implicit degenerate evolution equations in Hilbert spaces','',NULL,NULL),
(282,'Hunt','Walker Eugene','Don E. Edmondson','Ph. D','1979','Unique periodic solutions of a class of differential equations and composite solutions of a system of partial differential equations','',NULL,NULL),
(283,'Krause','Gary Alan','James W. Vick','Ph. D','1979','Smooth group actions of prime order and fixed point sets','',NULL,NULL),
(284,'Walker','Jesse Randall','John E. Gilbert','Ph. D','1980','Conjugate Hankel transforms and Hp-theory','',NULL,NULL),
(285,'Whittington','Keith Edwin','Stephen J. McAdam','Ph. D','1980','Prime divisors and the altitude formula','',NULL,NULL),
(286,'Denman','Richard Thomas','Michael P. Starbird','Ph. D','1981','Countable cellular decomposition of S^(s)','',NULL,NULL),
(287,'Jaffe','Leon','George G. Lorentz','Ph. D','1981','Rolle\'s theorem for Birkoff systems','',NULL,NULL),
(288,'Kuttler','Kenneth Latimer','Ralph E. Showalter','Ph. D','1981','Degenerate evolution equations and inequalities','',NULL,NULL),
(289,'Simmons','Forest Wayne','Michael P. Starbird','Ph. D','1981','The theory of block complexes with an application to manifold splittings','',NULL,NULL),
(290,'Stark','David Bonham','Peter W. M. John','Ph. D','1981','Trace optimality in non-orthogonal blocking designs of two-level factorial experiments','',NULL,NULL),
(291,'Vose','Michael David','Jeffrey D. Vaaler','Ph. D','1981','Limit theorems for sequences of divisor distributions','Univ. of Tennesee','',''),
(292,'Duffuaa','Salih Osman','Abraham Charnes','Ph. D','1982','On some economic distribution and network problems','',NULL,NULL),
(293,'Gutierrez','Jose Adalid','Howard E. Lacey and John E. Gilbert','Ph. D','1982','On the boundedness of the Banach space-valued Hilbert transform','',NULL,NULL),
(294,'Jea','Kang Chang','David M. Young, Jr.','Ph. D','1982','Generalized conjugate gradient acceleration of iterative methods','',NULL,NULL),
(295,'Katz','Daniel Lane','Stephen J. McAdam','Ph. D','1982','Asymptotic primes and applications','',NULL,NULL),
(296,'Marivani','Syrous','Jeffrey D. Vaaler','Ph. D','1982','Inequalities for character sums','Rust College, Misissippi','',''),
(297,'Matovsky','John-Anton Charles','Murray R. Cantor','Ph. D','1982','Decomposition of symmetric two-tensors over a compact Riemannian manifold with boundary','',NULL,NULL),
(298,'Nelson','Abraham','Abraham Charnes','Ph. D','1982','Goal arc methods in EEO planning and control','',NULL,NULL),
(299,'Fonken','David William','Klaus R. Bichteler','Ph. D','1983','A simple version of the Malliavin calculus with applications to the filtering equation','',NULL,NULL),
(300,'Lovegren','Victoria Marie','Abraham Charnes','Ph. D','1983','Informatics, analysis, and solution of a class of constrained integer network problems','',NULL,NULL),
(301,'Czitrom','Anne Veronica','Peter W. M. John','Ph. D','1984','D-optimal experimental designs and alternative models for quadratic blending with process variables','',NULL,NULL),
(302,'Kuga','Ken\'ichi','Andrew J. Casson','Ph. D','1984','On immersed 2-spheres in some 4-manifolds','',NULL,NULL),
(303,'Neidinger','Richard Dean','Haskell P. Rosenthal','Ph. D','1984','Properties of Tauberian operators on Banach spaces','',NULL,NULL),
(304,'Seager','Mark Kennedy','Graham F. Carey','Ph. D','1984','Adaptive finite element grid generation and extension for elliptic problems posed on unbounded domains','',NULL,NULL),
(305,'Shirley','Frank T.','Efraim Armendariz','Ph. D','1984','Regular and strongly pi-regular rings','',NULL,NULL),
(306,'Skora','Richard Klein','Cameron M. Gordon','Ph. D','1984','Maps between surfaces','',NULL,NULL),
(307,'Wuu','Julie','Peter W. M. John','Ph. D','1984','Efficient incomplete block designs','',NULL,NULL),
(308,'Bang','Hyunsoo','Edward W. Odell','Ph. D','1985','On the Isomorphic Structure of the Stopping Time Banach Space and on the Problem of Best Compact Approximation for Operators Between Lp Spaces.','',NULL,NULL),
(309,'Moore','Leslie Melissa','Peter W. M. John','Ph. D','1985','Ordering the Points in Factorial Experiments to Protect against Early Termination','',NULL,NULL),
(310,'Chou','Shang-Ching','Robert S. Boyer and J. Strother Moore','Ph. D','1986','Proving and Discovering Geometry Theorems Using Wu\'s Method','',NULL,NULL),
(311,'Hill','Joe Robert','Carl Morris','Ph. D','1986','Empirical Bayes Statistics: A Comprehensive Theory for Data Analysis','',NULL,NULL),
(312,'Kostal','Hubert','Carl Morris','Ph. D','1986','Empirical Bayes Methods for Spatial Data','',NULL,NULL),
(313,'Luecke','John Edwin','Cameron Gordon','Ph. D','1986','Finite Covers of Haken 3-Manifolds','',NULL,NULL),
(314,'Mai','Tsun-Zee','David M. Young','Ph. D','1986','Adaptive Iterative Algorithms for Large Sparse Linear Systems','',NULL,NULL),
(315,'McKemie','Marcia Jean Mason','Bruce Palka','Ph. D','1986','Quasiconformal groups and Quasisymmetric Embeddings','',NULL,NULL),
(316,'Moriah','Yoav','Cameron Gordon','Ph. D','1986','Heegaard splitting and groups presentations','',NULL,NULL),
(317,'Morrison','John M.','Gary L. Wise','Ph. D','1986','Some Problems in Martingale-Like Operators and Flows of Sigma Algebras Arising in Communication Theory.','',NULL,NULL),
(318,'Rulla','James Lorin','Ralph Showalter','Ph. D','1986','A Stefan Problem with Prescribed Convection','',NULL,NULL),
(319,'Smith','David Charles','Bruce Palka','Ph. D','1986','On the Laplace-Beltram Operator in Hyperbolic Space','',NULL,NULL),
(320,'Spellman','David Laurance','William Eaton','Ph. D','1986','Critical Level Embeddings of S^3 in S^4','',NULL,NULL),
(321,'Wessel','Alan','Haskell Rosenthal','Ph. D','1986','The Radon Nikodym Property for Convex Sets.','',NULL,NULL),
(322,'Beneish','Esther','David Saltman and Martha Smith','Ph. D','1987','Invertible Modules','',NULL,NULL),
(323,'Bosse','Marie-Pascale M.','Ralph Showalter','Ph. D','1987','Homogenization of the Layered Medium Equation.','',NULL,NULL),
(324,'Morgan','Ronald Benjamin','David Scott and Alan Cline','Ph. D','1987','Preconditioning Bigenvalue Problems','',NULL,NULL),
(325,'Sterba-Boatwright','Blair David','Cameron Gordon','Ph. D','1987','Incompressible Surfaces in Alternating Zink Complements','',NULL,NULL),
(326,'Koo','Hyeng Keun','Efraim P. Armendariz','Ph. D','1988','Rational Function Skew Fields and Related Topics in Skew Field Theory','',NULL,NULL),
(327,'Motto','Michael Howard','Cameron Gordon','Ph. D','1988','Surfaces in Three-Manifolds and Three-Manifold Triads','Ball State','',''),
(328,'Oppenheimer','Seth Frederic','Ralph Showalter','Ph. D','1988','Dynamics of Gas Absorption','',NULL,NULL),
(329,'Parker','Mary Ruth','Carl Morris','Ph. D','1988','Multiparameter Estimation in Normal Distributions: The Slightly Unequal Variance Case','',NULL,NULL),
(330,'Rodin','Altha Blanchet','David Saltman','Ph. D','1988','Function Fields of Generalized Brauer-Severi Varieties','Univ. of Texas, Austin','University of Texas at Austin',''),
(331,'Walkington','Noel','Ralph Showalter','Ph. D','1988','Resolution of a Diffusion Problem Arising in the Flow of Fluids','Carnegie-Mellon','',''),
(332,'Xu','Xiangsheng','Ralph Showalter','Ph. D','1988','The Continuous Dependence of Solutions to a Cauchy Problem.','Mississippi State Univ.','',''),
(333,'Babich','Amy Juliet','William Eaton','Ph. D','1989','Vorticist Denizens of R^3 are tame','',NULL,NULL),
(334,'Chun','Jang-Ho','Efraim P. Armendariz','Ph. D','1989','Isomorphic Ore Extensions of Automorphism Type','Yeungnam Univ., Korea','',''),
(335,'Finley','Davis Wallace','William Eaton','Ph. D','1989','A New Proof that 1-ULC Implies Tameness','','College of Southern Nevada',''),
(336,'Knaust','Helmut','Haskell Rosenthal','Ph. D','1989','On Uniform Structures in Infinite Dimensional Banach Spaces','Oklahoma State University','UT El Paso',''),
(337,'Pearson','John Michael','William Beckner','Ph. D','1989','Sobolev inequalities for ultra spherical polynomials','Florida International','Mississippi State',''),
(338,'Rong','Yong Wu','Cameron Gordon','Ph. D','1989','Degree One Maps between Geometric Three-Manifolds','Michigan State','George Washington University',''),
(339,'Shi','Sheng Guang','David Hinkley','Ph. D','1989','Accurate and Efficient Double-Bootstrap Methods','',NULL,NULL),
(340,'Struppeck','Thomas','Jeffrey Vaaler','Ph. D','1989','Inequalities for Heights of Algebraic Subspaces with Applications to Construction of Auxiliary Polynomials','Rutgers Univ.','University of Texas at Austin',''),
(341,'Wang','Suojin','David Hinkley','Ph. D','1989','Saddlepoint Approximations in Statistics, Including Resampling','Texas A&M Univ.','Texas A&M Univ.',''),
(342,'Blankenbaker','John Rayborn','William Beckner','Ph. D','1990','Fourier Analysis on the Sierpinski Gasket.','Univ. of Minnesota','University of Iowa',''),
(343,'Brahm','Matthew Vincent','Michael Starbird','Ph. D','1990','The Repovs Conjecture','Univ. of Minnesota','Wooster College',''),
(344,'Burger','Edward Bruce','Jeffrey Vaaler','Ph. D','1990','Diophantine Approximation in S-integers','Univ. of Waterloo','Williams College',''),
(345,'Chang','Yang Chun','Abraham Charnes and Patrick Brockett','Ph. D','1990','Chance Constrained Programming and Chebychev Systems with Applications','',NULL,NULL),
(346,'Hong','Chan Yong','William Schelter','Ph. D','1990','On Some Questions Concerning Weak Identities, Invariants, and Integrality','',NULL,NULL),
(347,'Joubert','Wayne David','David M. Young, Jr.','Ph. D','1990','Generalized Conjugate Gradient and Lanczos Methods for the Solution of Nonsymmetric Systems of Linear Equations','Willilam Carey Univ.','Los Alamos',''),
(348,'Kang','Joonsook Lee','E. W. Cheney','Ph. D','1990','The condition number and the singularity of a certain interpolation matrix','',NULL,NULL),
(349,'Miyazaki','Katura','Cameron Gordon','Ph. D','1990','Non-simple ribbon fibered knots','Univ. of Calif. at San Diego','Tokyo Denkii University',''),
(350,'O\'Leary','Robbin Lynn Learch','Jeffrey Vaaler','Ph. D','1990','Small Solutions to Inhomogeneous Systems of Linear Equations Over an Algebraic Number Field','Seattle Pacific Univ.','',''),
(351,'Oppe','Thomas Charles','David M. Young, Jr. and David Kincaid','Ph. D','1990','The Iterative Solution of Large Sparse Linear Systems Using Vector Computers','Florida State Univ.','Cray Research, Minnesota',''),
(352,'Saito','Masahico','Cameron Gordon','Ph. D','1990','Invariants of Link Cobordism','Toronto','South Florida University',''),
(353,'Schumacher','Carol','Edward Odell','Ph. D','1990','Sequential Domination in Banach Spaces and the Geometry of JH*','Kenyon College','Kenyon College',''),
(354,'Sun','Xingping','E.W. Cheney','Ph. D','1990','Multivariate Interpolation Using Ridge or Related Functions','S.W. Missouri State University','',''),
(355,'Sundheim','Paul Arnold','Cameron Gordon','Ph. D','1990','The Reidemeister and Markov Theorems via Diagrams for Links in 3-Manifolds','Univ. of Wisconsin','',''),
(356,'Claus','Wilhelmina Christina','Cameron Gordon','Ph. D','1991','Essential Laminations in Closed Seifert Fibered Spaces','Univ. of Puget Sound','',''),
(357,'Harms','Eerik Thomas','William Eaton','Ph. D','1991','Three Level Forms in s^4','','Fidelity National Information Services',''),
(358,'Huang','Pi-Hsiang','Peter W. M. John','Ph. D','1991','Balanced Factorial Structure with the Hypercubic Association Scheme','',NULL,NULL),
(359,'Huang','Zhimin','Abraham Charnes','Ph. D','1991','Vector Extremal Approaches to Competitive Models in Economics and Business Activities','',NULL,NULL),
(360,'Kohn','Peter Daniel','Cameron Gordon','Ph. D','1991','Linking and Unlinking Properties of Two Component Links','James Madison','',''),
(361,'Liau','Pen-Hwang','Peter W. M. John','Ph. D','1991','Fractional Factorial Designs','',NULL,NULL),
(362,'Lu','Wang-Shu','Carl Morris','Ph. D','1991','Empirical and Hierarchical Bayes Estimation of Several Means in the Natural Exponential Family','',NULL,NULL),
(363,'Nanyes','Ollie','Cameron Gordon','Ph. D','1991','Proper Knots are Locally Unknotted and a New Proof of Schubert\'s Bridge Number Theorem','Bradley','',''),
(364,'R�de','Johan','Karen Uhlenbeck','Ph. D','1991','On the Yang-Mills Heat Flow in Two and Three Dimensions','Stanford Univ.','Lund Univ., Sweden',''),
(365,'Seelinger','George Francis','David Saltman','Ph. D','1991','Orthogonal Matrix Invariants and Generalized Matrix Concomitants','Northern Illinois Univ.','',''),
(366,'Semple','John','Abraham Charnes','Ph. D','1991','On a Class of Dual Methods for Quadratic Programming','',NULL,NULL),
(367,'Serio','Frank Charles','Stephen McAdam','Ph. D','1991','Uppers to (0) in Intersections of Prime Ideals in Polynomial Rings','Northwest La State','',''),
(368,'Sun','Li','Abraham Charnes','Ph. D','1991','On Some Problems of Chance-Constrained Programming','',NULL,NULL),
(369,'Tintera','George Dunkin','Martha Smith','Ph. D','1991','On the Stable Rank of Enveloping Algebras','Texas A&I Univ.','Univ. of Texas, Corpus Christi',''),
(370,'Clark','Gordon Wayne','Ralph Showalter','Ph. D','1992','Microstructure Modeling of Fluid Flow in a Layered Medium','Kennesaw State College','Mississippi State',''),
(371,'Cook','John D.','Ralph Showalter','Ph. D','1992','Diffusion Models with Microstructure and Secondary Flux','Vanderbilt Univ.','Singular Value Consulting','http://www.johndcook.com/'),
(372,'Glosup','Jeffrey Gleen','David Hinkley','Ph. D','1992','Nonparametric Regression and Its Uses in Checking Model Fit','','Lawrence Livermore National Laboratory',''),
(373,'Gong','Linguo','Abraham Charnes','Ph. D','1992','Senstivity and Stability Analysis of Problems in Chance Constrained Programming','',NULL,NULL),
(374,'Liu','Zhuxing','Haskell Rosenthal','Ph. D','1992','On Operators in L(L_1).','Hebei Univ. China','',''),
(375,'Menegatto','Valdir Antonio','E.W. Cheney','Ph. D','1992','Interpolation on Spherical Spaces','University of Sao Paolo','University of Sao Paolo',''),
(376,'Packer','Lindsay','Ralph Showalter','Ph. D','1992','The Regularized Layered Medium Equation','Charleston College','',''),
(377,'Patton','Robert Max','Cameron Gordon','Ph. D','1992','Incompressible punctured tori in the complements of alternating knots','Murray State','',''),
(378,'Pinner','Christopher G.','Jeffrey Vaaler','Ph. D','1992','On the Number of Irreducible Factors of a Polynomial','Macquarie Univ. Sydney Australia','Univ. of British Columbia, Vancouver',''),
(379,'Shah','Chandni','Stephen McAdam','Ph. D','1992','Intergral Uppers','UT Austin','University of Calif. at Riverside',''),
(380,'Sullivan','Michael Carroll','Robert Williams','Ph. D','1992','The Prime Decomposition of Knotted Periodic Orbits in Dynamical Systems','Cornell','Northwestern University',''),
(381,'Vona','Bi Roubolo','David M. Young','Ph. D','1992','Parallel Multilevel Iterative Methods','Univ. of Texas, Austin','Clark Univ., Georgia',''),
(382,'Westmoreland','Michael David','David Saltman','Ph. D','1992','Valuations on Division Algebras','Denison Univ.','',''),
(383,'Zhang','Dagan','Abraham Charnes','Ph. D','1992','Optimization of Pursuit and Reliability on Discrete Graphs','',NULL,NULL),
(384,'Chaatit','Fouad','Haskell Rosenthal','Ph. D','1993','Some Subclasses of Baire-1 Functions and Uniform Homeomorphisms','UT El Paso','Al Akhawayn University, Morroco',''),
(385,'Chang','Kuei-Fang','Elliott Cheney','Ph. D','1993','Wavelet Analysis in Hilbert Space','Taiwan University','',''),
(386,'Holt','Jeffery J.','Jeffrey Vaaler','Ph. D','1993','Radial Analogues of some Extremal Beuring-Selberg Functions','Michigan Tech Univ.','',''),
(387,'Little','Thomas Dan','Ralph Showalter','Ph. D','1993','Semilinear Parabolic Equations with Preisach Hysteresis','Courant Institute of Mathematical Sciences','Univ. of Texas at Arlington',''),
(388,'McDonald','James Wade','Karen Uhlenbeck','Ph. D','1993','A Finite Index Approximation of Floer Homology','Univ. of Texas, Austin','Texas Legislative Budget Board',''),
(389,'Morin','Chris L.','Cameron Gordon','Ph. D','1993','A Characterization of Handlebodies, Homotopy and Homology Unknotting Numbers of a Knot','Blackburn College','',''),
(390,'Schafer','Robert P.','Rafael de la Llave','Ph. D','1993','Rigidity for Dynamically Defined Cantor Sets and Expanding Circle Maps','UT El Paso','University of Texas at Austin',''),
(391,'Wahl','Barbara Jane','Edward Odell','Ph. D','1993','Unconditional Averages in the Banach Spaces c(alpha)','Hanover College','',''),
(392,'Yu','Yuan','Robert Boyer','Ph. D','1993','Automated Proofs of Object Code for a Widely Used Microprocessor','',NULL,NULL),
(393,'Boerkoel','Antonie','Jeffery Vaaler','Ph. D','1994','Diophantine Approximation in Local Fields by Algebraic Numbers of Bounded Degree','Texas A&M Univ., Kingsville','',''),
(394,'Buehler','Sue','Edward Odell','Ph. D','1994','The James Function Space','Univ. of Wisconsin','',''),
(395,'Chang','Chwen-ming','Peter W. M. John','Ph. D','1994','Optimal and Minimal Experimental Designs','Institute of Taiwan Studies','',''),
(396,'Chen','Debao','Elliott Cheney','Ph. D','1994','Cardinal Spline Wavelets','Oklahoma State University','',''),
(397,'Fabel','Andrew Paul','Alec Norton','Ph. D','1994','Self Homeomorphisms of the 2-sphere which pointwise fix a nonseparating continuum','Mississippi State Univ.','',''),
(398,'Goodman-Strauss','Chaim','John Luecke','Ph. D','1994','On Composite Twisted Unknots','University of Arkansas','',''),
(399,'Hollingsworth','Brooke Lanae Hagood','Ralph Showalter','Ph. D','1994','Semilinear Degenerate Parabolic Systems and Distributed Capacitance Models','Oregon State Univ.','Brentwood Christian School, Austin TX',''),
(400,'Jia','Lei','William Schelter','Ph. D','1994','On Automatic Theorem Proving in Conjugate Geometries','',NULL,NULL),
(401,'Loepp','Susan Renee','Raymond Heitmann','Ph. D','1994','Making the Generic Formal Fiber Local','Univ. of Nebraska','Williams College',''),
(402,'Pak','Ro Jin','Ayan Basu','Ph. D','1994','Minimum disparity estimation in linear regression models: robustness and efficiency','Taejan University, Korea','',''),
(403,'Shaw','Jason (Previously Xiao','David M. Young, Jr. and Kamy Sepehrnoori','Ph. D','1994','Multigrid Methods with Application in Reservoir Simulation','Western Atlas, Houston','',''),
(404,'Tyler','Stephanie M.','Jeffery Vaaler','Ph. D','1994','The Lagrange Spectrum in Projective Space Over a Local Field','Univ. of Tennesee','',''),
(405,'Zhang','Changing','Patrick Brockettand and Vijay Mahajan','Ph. D','1994','Stochastic Programming and Optimal Saleforce Compensation Schemes','',NULL,NULL),
(406,'Broumas','Antonios','Jose Felipe Voloch','Ph. D','1995','Effective p-Descent','Univ. of Arizona','',''),
(407,'Hoffman','James Allen','Cameron Gordon','Ph. D','1995','Reducing Spheres and Embedded Projective Planes after Dehn Surgery on a Knot','Louisiana State University','',''),
(408,'Li','Shan','Patrick Brockett','Ph. D','1995','A new approach to sensitivity analysis of the DEA models and its applications in ranking and productivity growth','',NULL,NULL),
(409,'Mossinghoff','Michael J.','Jeffery Vaaler','Ph. D','1995','Algorithms for the Determination of Polynomials with Small Mahler Measure','Appalachian State Univ.','',''),
(410,'Androulakis','George','H. Rosenthal','Ph. D','1996','Isomorphically Polyhedral Banach Spaces and Mixed Tsirelson Spaces of Arbitrary Distortion','Univ. of Missouri','',''),
(411,'Berg','Gary Douglas','Edward Odell','Ph. D','1996','On James Spaces','','University of Texas at Austin',''),
(412,'Choi','Kwok Kwong Stephen','Jeffery Vaaler','Ph. D','1996','Diophantine Approximation on Projective Spaces over Number Fields','Princeton Institute for Advanced Study','',''),
(413,'Cui','Xuewei','Peter W. M. John','Ph. D','1996','Construction of Time Trend Free Run Orders','',NULL,NULL),
(414,'Dean','John Charles','Cameron Gordon','Ph. D','1996','Hyperbolic Knots with Small Seifert-fibered Dehn Surgeries.','Mathematical Sciences Research Institute','',''),
(415,'Dworkin','Steven Eric','Charles Radin','Ph. D','1996','Ergodic Theory, X-Ray Diffraction and Tilings of Euclidean Space','Rice University','',''),
(416,'Epperson','James A. M.','William Beckner','Ph. D','1996','Percolation on the Randomized Sierpinski Carpet','Univ. of Texas, Austin','',''),
(417,'Fuller','Terry Scott','Robert Gompf','Ph. D','1996','Distinguishing Embedded Curves in Rational Complex Surfaces','Univ. of Calif. at Irvine','',''),
(418,'Gasparis','Ioannis','Haskell Rosenthal','Ph. D','1996','Quotients of C(K) Spaces','','University of Crete',''),
(419,'Kim','Meelae','William Beckner','Ph. D','1996','Sharp Moser Inequalities','Korea University, Instructor','',''),
(420,'Lee','Joongul','John Tate','Ph. D','1996','On Refined Class Number Formula','Ohio State','',''),
(421,'Shieh','Jiunn-I','Charles Radin','Ph. D','1996','The Topological and Geometrical Properties of a Uniquely Ergodic Tiling System','',NULL,NULL),
(422,'Swets','Paul K.','David Saltman','Ph. D','1996','Global Sections of Higher Powers of the Twisting Sheaf on a Brauer-Severi Variety','Indiana University','',''),
(423,'Yun','Sung Sik','Elliott Cheney','Ph. D','1996','The Fundamentality Problem for Translates of Continuous Functions','Korea University','',''),
(424,'Chen','Jen-yuan','David M. Young, Jr.','Ph. D','1997','Iterative Solutions of Large Sparse Nonsymmetric Linear Systems','','National Kaohsiung Normal Univ., Korea',''),
(425,'Chiu','Wan-Yi','Peter W. M. John','Ph. D','1997','Optimal Fractional Factorial Designs','',NULL,NULL),
(426,'Dresden','Gregory','Jeffery Vaaler','Ph. D','1997','Spectra of Heights over Certain Finite Groups','','Washington and Lee Univ.',''),
(427,'Etnyre','John B.','Robert Gompf','Ph. D','1997','Symplectic Constructions on 4-Manifolds','','University of Pennsylvania',''),
(428,'Guilfoyle','Brendan','Karen Uhlenbeck','Ph. D','1997','The Cauchy Initial Value Problem for Yang-Mills Metrics','','Institute of Technology, Tralee Ireland',''),
(429,'Hahm','Nahm-woo','Elliott Ward Cheney, Jr.','Ph. D','1997','Degree of Approximation by Neural Networks','',NULL,NULL),
(430,'Heinz','Martin','Bruce Palka','Ph. D','1997','Quasiconformal Groups','',NULL,NULL),
(431,'Judd','Robert','Edward Odell','Ph. D','1997','On Bourgain\'s Index and Schreier Sets','Oklahoma State University','University of Denver',''),
(432,'Lane','David','Sean Keel','Ph. D','1997','Exceptional Surfaces For Resolution of Isolated Threefold Singularities','','John Hopkins',''),
(433,'Lochhead-Rock','Laura','Ralph Showalter','Ph. D','1997','A Coupled System of Semilinear Parabolic Equations with Hysteresis','','University of Washington',''),
(434,'Oh','Seungsang','Cameron Gordon','Ph. D','1997','Exceptional manifolds After Dehn Filling','Mathematical Sciences Research Institute','',''),
(435,'Rieck','Yo\'av','Cameron Gordon','Ph. D','1997','Heegaard Surfaces and Dehn Fillings: G(M)-1 Less than T(X) Less than G(M)','','University of Arkansas',''),
(436,'Sedgwick','Eric','Cameron Gordon','Ph. D','1997','On the Classification and Stabilization Problems for Heegaard Splittings of Three-Manifolds','','Depaul Univ.',''),
(437,'Tandy','Brian','Alec Norton','Ph. D','1997','Cantor Sets and Lipschitz Actions on Circles and Trees','','Diego Corp., Palo Alto',''),
(438,'Abramson','Daniel','Jeffrey Vaaler','Ph. D','1998','On an Integral Related to Vinogradov\'s Integral','United Arab Emirates University','',''),
(439,'Bergbauer','Chinyoung','Cameron Gordon','Ph. D','1998','The Degeneracy Slopes and the Stretching Factors of Fibered Alternating Knots','','Lone Star College',''),
(440,'Chen','Hongqiu','Jerry Bona','Ph. D','1998','Solitary Waves and Long-Wave Phenomena','','University of Memphis',''),
(441,'Fogel','Karrolyne','John Tate','Ph. D','1998','Stark\'s Conjecture in the Octahedral Case','','California Lutheran University',''),
(442,'Handfield','Jay','Lorenzo Sadun','Ph. D','1998','Adiabatic Limits of the Anti-Self-Dual Equation','',NULL,NULL),
(443,'Harper','Shinko K.','Sean Keel','Ph. D','1998','Segre Class of Almost Complete Intersections','','University of Texas at Austin',''),
(444,'Lerma','Miguel A.','Jeffery Vaaler','Ph. D','1998','An Extremal Majorant for the Logarithm and Its Applications','','Northwestern University',''),
(445,'Osoinach','John','John Luecke','Ph. D','1998','Manifolds Obtained by Dehn Surgery on Infinitely Many Distinct Knots in s^3','','Univ. of Dallas',''),
(446,'Paul','Randall','R. de la Llave','Ph. D','1998','Normal Form Techniques in Degenerate Hamiltonian Systems','','Oregon Institute of Technology',''),
(447,'Shults','Benjamin','Robert Boyer and Larry Hines','Ph. D','1998','Discoveries and Experiments In the Automation of Mathematical Reasoning','','Bethel University',''),
(448,'Bachman','David','Cameron Gordon','Ph. D','1999','A Piecewise-Linear Theory of Minimal Surfaces of Non-Zero Index','','Pitzer College, California',''),
(449,'Barton','Jeffery','Jeffery Vaaler','Ph. D','1999','Analogs of the Beurling-Selberg Functions in N Dimensions and their applications','','Birmingham-Southern College',''),
(450,'Cadavid','Carlos','Robert Gompf','Ph. D','1999','On a Remarkable Set of Words in the Mapping Class Group','','Universidad Nacional de Columbia',''),
(451,'Jeong','Sang Tae','Felipe Voloch','Ph. D','1999','Diophantine Problems in Function Fields of Positive Characteristic','','Inha University, Korea',''),
(452,'Kang','Cong','Jose Felipe Voloch','Ph. D','1999','On Lang\'s diophantive conjecture for surfaces of general type','','Texas A&M Univ. at Galveston',''),
(453,'Linhart','Jean Marie','Lorenzo Sadun','Ph. D','1999','Numerical Investigations of Singularity Formation in Non-Linear Wave Equations in the Adiabatic Limit','','Texas A&M Univ.',''),
(454,'Masters','Joseph','Alan Reid','Ph. D','1999','Lengths and Homology of Hyperbolic 3-Manifolds','','Univ. at Buffalo',''),
(455,'Blue','Meredith','David Saltman','Ph. D','2000','Generic Galois extensions for groups of order p^3','Assistant Professor, Eckerd College','Assistant Professor, Florida Atlantic University',NULL),
(456,'Chern','Shey-Jey','Jeffrey Vaaler','Ph. D','2000','Estimates for the Number of Polynomial with Bounded Degree and Bounded Measure','',NULL,NULL),
(457,'Gibney','Angela','Sean Keel','Ph. D','2000','Fibrations of the Closure of M_{g,n}','Postdoctoral Assistant Professor (VIGRE),
University of Michigan','Assistant Professor, University of Pennsylvania',NULL),
(458,'Haskins','Mark','Karen Uhlenbeck','Ph. D','2000','Constructing Special Langrangain Cones','Postdoctoral Assistant Professor, Johns Hopkins University',NULL,NULL),
(459,'Pak','Hee Chul','Ralph Showalter','Ph. D','2000','Two Distributed Capacitance Models','Assistant Professor, Sogang University, Korea',NULL,NULL),
(460,'Park','Young Ja','Bill Beckner','Ph. D','2000','Sobolev trace inequality and logarithmic Sobolev trace inequality','Sejong University, Seoul, Korea',NULL,NULL),
(461,'Verjovsky Marcotte','Cynthia','Cameron Gordon','Ph. D','2000','Essential Surfaces after Dehn Filling','Assistant Professor, St. Edward\'s University',NULL,NULL),
(462,'Zhang','Zuoshun','E.W. Cheney and E. I. George','Ph. D','2000','Proper Posterior Distributions for some Hierarchical models and Roundoff Effects in the Gibbs Sampler','Research Scientist, Quintiles, Inc.',NULL,NULL),
(463,'Abad','Juan Jose','Hans A. Koch','Ph. D','2001','Renormalization, invariant tori, and periodic orbits for Hamiltonian flows','McMaster University, Hamilton, Ontario, Canada',NULL,NULL),
(464,'Buck','Dorothy Elizabeth','Lorenzo Sadun','Ph. D','2001','The Topology and Geometry of DNA and DNA-Protein Interaction','Assistant Professor, Applied Mathematics, Brown University',NULL,NULL),
(465,'Finotti','Luis Renato Abib','Felipe Voloch','Ph. D','2001','Canonical and Minimal Degree Liftings of Curves','University of California Santa Barbara','Instructor, Ohio State University',NULL),
(466,'Hayes','Leslie','Raymond Heitmann','Ph. D','2001','The Plus Closure of an Ideal','Assistant Professor, St. Joseph\'s University',NULL,NULL),
(467,'Kalisch','Henrik W.','Jerry L. Bona','Ph. D','2001','Models for Internal Waves in Two-Fluid Systems','Research Fellow, Norwegian University of Sciences and Technology, Trondheim, Norway',NULL,NULL),
(468,'Krashen','Daniel','David Saltman','Ph. D','2001','Birational Isomorphisms between Severi-Brauer Varieties','University of California Los Angeles','Gibbs Assistant Professor, Yale University',NULL),
(469,'Momken','Bahareh','Ralph Showalter','Ph. D','2001','Fluid Flow and Deformable Multi-Porous Media','Avaya Communication, Westminster, CO',NULL,NULL),
(470,'Revesz','Mike','Klaus Bichteler','Ph. D','2001','The L p Theory of Random Measures','Engineering Scientist, Applied Research Lab, University of Texas at Austin',NULL,NULL),
(471,'Richardson','Gregory Scott','Jerry Bona','Ph. D','2001','Rare events and conditional limit theorems for a class of spectrally positive, heavy-tailed Levy processes','Visiting Instructor, Macalester College, St. Paul, MN',NULL,NULL),
(472,'Rulla','William Frederick','Sean Keel','Ph. D','2001','The Birational Geometry of M3 and M2,1','VIGRE Postdoc, University of Georgia at Athens',NULL,NULL),
(473,'Visarraga','Darrin Bernardo','Ralph E. Showalter','Ph. D','2001','Heat Transport Models With Distributed Microstructure','University of Texas at Austin','Los Alamos National Laboratory',NULL),
(474,'Bowen','Lewis','Charles Radin','Ph. D','2002','Density in Hyperbolic Spaces','University of California at Davis','Zorn Postdoctoral Fellow, Indiana University',NULL),
(475,'Goncalves','Alexander','Karen Uhlenbeck','Ph. D','2002','An Application of The Continuity Method for an Equation on Line Bundles','Universidade de Federal, Rio de Janeiro, Brazil',NULL,NULL),
(476,'Jiang','Jiaosheng','Haskell Rosenthal','Ph. D','2002','Bounded Operators without Invariant Subspaces on Certain Banach Spaces','The University of Texas at Austin',NULL,NULL),
(477,'Kim','Christina','Panagiotis Souganidis','Ph. D','2002','Uniqueness and Existence Results on Viscosity Solutions of Some Free Boundary Problems','Assistant Professor, Massachusetts Institute of Technology','Assistant Professor, University of California at Los Angeles',NULL),
(478,'Leasure','Jason','Cameron Gordon','Ph. D','2002','Geodesics in the Complex of Curves of a Surface','National Security Agency',NULL,NULL),
(479,'Leininger','Chris','Alan Reid','Ph. D','2002','Essential Surfaces in Hyperbolic Three-Manifolds','Post-Doc Columbia University,','Assistant Professor, University of Illinois at Urbana-Champaign',NULL),
(480,'Oehrtman','Michael','Uri Treisman','Ph. D','2002','Collapsing Dimensions, Physical Limitation, and other Student Metaphors for Limit Concepts','Assistant Professor, Arizona State University',NULL,NULL),
(481,'Slepcev','Dejan','Panagiotis Souganidis','Ph. D','2002','On Level Set Approach to Motion of Manifolds of Arbitrary Codimension','Visiting Assistant Professor, University of Toronto','Assistant Adjunct Professor, University of California at Los Angeles',NULL),
(482,'Socha','Katherine','Mikhail Vishik','Ph. D','2002','Modal Expansions of Surface Wave Model Equations','Assistant Profesor, Michigan State University','Assistant Professor, St. Mary\'s College of Maryland',NULL),
(483,'Tiu','Christian','Thaleia Zariphopoulou','Ph. D','2002','On the Merton Problem in Incomplete Markets','Graduate Research Assistant, The University of Texas at Austin',NULL,NULL),
(484,'Torres','Monica','Luis Caffarelli','Ph. D','2002','Plane-like minimal surfaces in periodic media with inclusions','Assistant Professor, Northwestern University','University of Houston',''),
(485,'Valdinoci','Enrico','Luis Caffarelli','Ph. D','2002','Plane-like Minimizers in Periodic Media: Jet Flows and Ginzburg-Landau','Scuola Normale Superiore, Pisa, Italy','University of Rome III',NULL),
(486,'Vano','John','Rafael de la Llave','Ph. D','2002','A Nash-Moser Implicit Function Theorem with Whitney Regularity and Applications','University of Wisconsin at Madison',NULL,NULL),
(487,'Yuan','Juan-Ming','Jerry Bona and Todd Arbogast','Ph. D','2002','Numerical Schemes for Systems of Non-linear Dispersive Wave Equations','Visiting Mathematician, Oklahoma State University',NULL,NULL),
(488,'Goodman','Noah','Robert Gompf','Ph. D','2003','Contact Structures and Open Books','St. Edward\'s University at Austin','Post Doctoral Appointment, Massachusetts Institute of Technology',NULL),
(489,'Mandolesi','Andre','Karen Uhlenbeck','Ph. D','2003','Adiabatic Limits of the Hermitian Yang-Mills Equations on Slicewise Stable Bundles','Professor, Feira de Santana, Brazil',NULL,NULL),
(490,'Neira','Ana Raissa','Felipe Voloch','Ph. D','2003','Power Series in P-ADIC Roots of Unity','Mercer Human Resource Consulting, San Francisco, California',NULL,NULL),
(491,'Pacetti','Ariel','Fernando Rodriguez-Villegas','Ph. D','2003','A formula for the central value of certain Hecke L-functions','University of Buenos Aires',NULL,NULL),
(492,'Pal','Mihaela','Elliott Cheney','Ph. D','2003','Theory of Principal Component Filter Banks with Applications to Multicomponent Imagery','Los Alamos National Labs',NULL,NULL),
(493,'Savin','Ovidiu','Luis Caffarelli','Ph. D','2003','Phase Transitions: Regularity of Flat Level Sets','Post Doctoral Visiting Faculty, University of California at Berkeley',NULL,NULL),
(494,'Terhune','David','Fernando Rodriguez-Villegas','Ph. D','2003','Evaluations of Multiple L-Values and Double Zeta Values of Quadratic Fields','VIGRE Postdoc, Pennsylvania State University',NULL,NULL),
(495,'Baker','Kenneth','John Luecke','Ph. D','2004','Knots on Once-punctured Torus Fibers','VIGRE, University of Georgia at Athens',NULL,NULL),
(496,'Condon','John','Fernando Rodriguez Villegas','Ph. D','2004','Mahler Measure Evaluations in terms of Polylogarithms','Visiting Assistant Professor, City University of New York',NULL,NULL),
(497,'Fukshansky','Leonid','Jeffrey Vaaler','Ph. D','2004','Algebraic Points of Small Height with Additional Arithmetic Conditions','Visiting Assistant Professor, Texas A & M University',NULL,NULL),
(498,'Lehr','Heather','Todd Arbogast','Ph. D','2004','Analysis of a Darcy-Stokes System Modeling Fluid Flow in Vuggy Porous Media','Ohio State University',NULL,NULL),
(499,'Petsche','Clayton Jay','Jeff Vaaler','Ph. D','2004','Distribution of Galois Orbits of Low Height','VIGRE Post Doctoral Associate, University of Georgia at Athens',NULL,NULL),
(500,'Portillo-Bobadilla','Francisco','Felipe Voloch','Ph. D','2004','Computations on an Equation of the BSD Type','Universidad Nacional Autonoma de Mexico',NULL,NULL),
(501,'Brunson','Dana','Todd Arbogast','Ph. D','2005','Simulating Fluid Flow in Vuggy Porous','',NULL,NULL),
(502,'Kelliher','James','Mikhail Vishik','Ph. D','2005','The vanishing Viscosity Limit for Incompressible Fluids in two dimensions','Tamarkin Assistant Professor, Brown University',NULL,NULL),
(503,'Lalin','Matilde','Fernando Rodriguez-Villegas','Ph. D','2005','Some relations of Mahler measure with hyperbolic volumes and special values of L-Functions','Member, Institute for Advanced Study, Princeton.','Associate Professor, Universite de Montreal, Canada',''),
(504,'Lamar','Michael Andrew','Jack Xin','Ph. D','2005','Human Acoustics: From Vocal Chords to Inner Ear','Postdoctoral Associate, Cornell University',NULL,NULL),
(505,'Masri','Riad','Fernando Rodriguez-Villegas','Ph. D','2005','Some applications of classical modular forms to number theory','Postdoctoral Fellow, Max Planck Institute for Mathematics,',NULL,NULL),
(506,'Parker','Adam','Sean Keel','Ph. D','2005','An Elementary Construction of M0,0','Assistant Professor, Wittenberg University, Springfield, Ohio',NULL,NULL),
(507,'Petersen','Kathleen','Alan Reid','Ph. D','2005','One-Cusped Congruence Subgroups of PSL2','Coleman Postdoctoral Fellow, Queen\'s University, Ontario, Canada',NULL,NULL),
(508,'Silvestre','Luis','Luis Caffarelli','Ph. D','2005','Regularity of the obstacle problem for a fractional power of the Laplace Operator','Postdoctoral Instructor, Courant Institute, New York, New York',NULL,NULL),
(509,'Sinclair','Christopher','Jeffrey Vaaler','Ph. D','2005','Multiplicative Distance Functions','Postdoctoral Fellow, Pacific Institute for the Mathematical Sciences','Univ. of Oregon',''),
(510,'Stoikov','Sasha','Thaleia Zariphopoulou','Ph. D','2005','Optimal Strategies in incomplete financial markets','Postdoctoral Instructor, Courant Institute, New York, New York',NULL,NULL),
(511,'Teixeira','Eduardo','Luis Caffarelli','Ph. D','2005','Regularity of Free Boundary in variational problems','Postdoctoral Assistant Professor, State University of New Jersey at Rutgers',NULL,NULL),
(512,'Tornaria','Gonzalo','Fernando Rodriguez-Villegas','Ph. D','2005','The Brandt Module of Ternary Quadratic Lattices','Postdoctoral Fellow, University of Montreal, Canada','Profesor Adjunto, Universidad de la Rep�blica, Uruguay','http://www.cmat.edu.uy/~tornaria/'),
(3858,'Pan','Feng','','M.S.','1998','',NULL,NULL,NULL),
(3857,'Murphy','Patrick Sean','','M.S.','1998','',NULL,NULL,NULL),
(3856,'Kim','Dongseok','','M.S.','1998','',NULL,NULL,NULL),
(3855,'Higosaki','Ai','','M.S.','1998','',NULL,NULL,NULL),
(3854,'Fleming','Steven Chase','','M.S.','1998','',NULL,NULL,NULL),
(3853,'Dai','Yanqing','','M.S.','1998','',NULL,NULL,NULL),
(3852,'Bryan','Thomas Andrew','','M.S.','1998','',NULL,NULL,NULL),
(3851,'Arguello','Nowl Ricardo','','M.S.','1998','',NULL,NULL,NULL),
(3850,'Wen','Zhihong','Thomas Sager & Peter John','M.S.','1997','Logistic Regression and its Applications in Insurance Industry Data Analysis',NULL,NULL,NULL),
(3849,'Li','Shangjing','Peter John & Miguiel Arcones','M.S.','1997','D-Optimal Experimental Designs',NULL,NULL,NULL),
(3848,'Kawasaki','Teresinha','William Schelter & Rafael Llave','M.S.','1997','Wallpaper Groups: Their Recognition and Construction of Representative Patterns',NULL,NULL,NULL),
(3847,'Iskra','Matthew','John Tate & Jose Voloch','M.S.','1997','Hasse\'s Theorem',NULL,NULL,NULL),
(3846,'Ham','Ji Soo','Elliott Cheney & David Morton','M.S.','1997','The Global Minimization of a Concave Quadratic',NULL,NULL,NULL),
(3845,'Zhang','Yan','Sara Stokes & Peter John','M.S.','1997','Model Selection and Automated Smoothing of Marketing Survey Data',NULL,NULL,NULL),
(3844,'Yoo','Bongin','Earl Jennings & Peter John','M.S.','1997','Performing Analysis of Variance Calculations with Regression Software',NULL,NULL,NULL),
(3843,'Shomenta','Christopher','Efraim Armendariz & Raymond Heitmann','M.S.','1997','The Algebra of Public Key Encryption Systems',NULL,NULL,NULL),
(3842,'Sherburne','Gwenn','Martha Smith & John Durbin','M.S.','1997','Polya\'s Enumeration Theorems and Their Applications',NULL,NULL,NULL),
(3841,'Ottinger','Julene','Peter John & Miguiel Arcones','M.S.','1997','Discriminant Analysis',NULL,NULL,NULL),
(3840,'Mun','Yong Jun','Thomas Shively & Peter John','M.S.','1997','The Use of SAS in Statistical Methodology of Pharmaceutical Industry',NULL,NULL,NULL),
(3839,'Liang','Shuhua','Peter John & Thomas Sager','M.S.','1997','Box and Behnken Methods for Second Order Designs',NULL,NULL,NULL),
(3838,'DSouza','Michael','David Youn & Klaus Bichteler','M.S.','1997','Numerical Determination of the Smallest Eigenvalue for Large and Sparse',NULL,NULL,NULL),
(3837,'Wu','Shwu-Jen','Thomas Sager & Sara Stokes','M.S.','1996','An Integrated Approach to Regression Analysis Through the Statistical Analysis System',NULL,NULL,NULL),
(3836,'White','Frankie','Efraim Armendariz & Melba Crawford','M.S.','1996','Modeling the Fire Arrival Process in Australia\'s Great Western Desert',NULL,NULL,NULL),
(3835,'Lin','Zong-Tsang','Elliott Cheney & Lyle Clark','M.S.','1996','Equation',NULL,NULL,NULL),
(3834,'Garcia','Mario','Elliott Cheney & David Kincaid','M.S.','1996','An Overview of Natural Neighbor Interpolation',NULL,NULL,NULL),
(3833,'Bennett','Patricia','Sara Stokes & Thomas Shively','M.S.','1996','An Automated Fitting and Selection Method for Growth Curves',NULL,NULL,NULL),
(3832,'Shen','Yung-Yao','Elliott Cheney & David Kincaid','M.S.','1996','The Approximation Property for Banach Spaces',NULL,NULL,NULL),
(3831,'Scott','James','Efraim Armendariz & Stephen McAdam','M.S.','1996','A Characterization of Dedekind Domains',NULL,NULL,NULL),
(3830,'Park','Tae Wan','Jose Voloch & David Saltman','M.S.','1996','A Study o fthe Asymptotically Good Towers of Function Fields',NULL,NULL,NULL),
(3829,'Nakamura','Mutsumi','Elliott Cheney & David Kincaid','M.S.','1996','On the Universal Approximation Property of Neural Networks',NULL,NULL,NULL),
(3828,'McChesney','Amatist','Sara Stokes & Betsy Greenberg','M.S.','1996','Estimating Nonconformance Rates for Imperfect Inspection Processes with Random Inspection Error',NULL,NULL,NULL),
(3827,'Ling','Herbert','Rafael Llave & Antone Jacobson','M.S.','1996','Applications of Nonlinear Differential Equations: Models in Developmental Biology and Plasma Physics',NULL,NULL,NULL),
(3826,'Lemieux','James','John Luecke & Patrick Callahan','M.S.','1996','Geometria Situs: A Survey of Early Developments in Knot Theory and Related Fields',NULL,NULL,NULL),
(3825,'Jensen','Jeffrey','Rafael Llave & Roger Broucke','M.S.','1996','A Study of the Halo Orbits',NULL,NULL,NULL),
(3824,'Hua','Cuong','Efraim Armendariz & Jeffrey Vaaler','M.S.','1996','Dedekind Domains: Some Characterizations and Examples',NULL,NULL,NULL),
(3823,'Chang','Yung-Ming','Elliott Cheney & David Kincaid','M.S.','1996','Shepard\'s Interpolation',NULL,NULL,NULL),
(3822,'Ye','Yehong','Peter John & Sara Stokes','M.S.','1996','Difference Between Repeated Measure Design and Randomized Complete Block Design',NULL,NULL,NULL),
(3821,'Welton','Patrick Kent','Lorenzo Sadun & Daniel Freed','M.S.','1996','The Center of Mass in the Wave Equation for the CP1 Nonlinear R $ Sigma$-Model',NULL,NULL,NULL),
(3820,'Sims','Charles W.','John Gilbert & Bill Beckner','M.S.','1996','Fractals, Wavelets and Vanishing Moments',NULL,NULL,NULL),
(3819,'McCormack','Donald William','Peter John & Melba Crawford','M.S.','1996','In ABS 872 Process Capability for Nonnormal Dara Report',NULL,NULL,NULL),
(3818,'Lyttle','Sydney Norman','Peter John & Thomas Sager','M.S.','1996','Responser Surface Methods & Robust Design',NULL,NULL,NULL),
(3817,'Hong','Christina Y. Chen','Peter John & Thomas Sager','M.S.','1996','Evolutionary Operation',NULL,NULL,NULL),
(3816,'Graves','Sherry Lynn','Stephen McAdam & Ray Heitmann','M.S.','1996','The Rigidity Conjecture and Consequences',NULL,NULL,NULL),
(3815,'Brown','Stacy Ann','Alec Norton','M.S.','1996','Near Hyperbolicity and the Henon Map',NULL,NULL,NULL),
(3814,'Arthur','Jeffrey James','Patrick Brockett','M.S.','1996','The Impossibility of Simultaneously Unique Degenerate Optimal Primal and Dual Solutions to Linear Programming Problems',NULL,NULL,NULL),
(3813,'Soeharyadi','Yudi','Mikhail Vishik & Rafael Llave','M.S.','1995','Explicit Algebraic Integration of Euler\'s Equations of the Dynamics of an N-Dimensional Rigid Body',NULL,NULL,NULL),
(3812,'Ryan','Cathleen','David Saltman & Martha Smith','M.S.','1995','The Equivalence of Ring Homomorphisms into Division Algebras',NULL,NULL,NULL),
(3811,'Nallana','Asha','David Young & David Kincaid','M.S.','1995','Cray-T3D Performance Study',NULL,NULL,NULL),
(3810,'Huang','Li-Fei','Peter John & Thomas Sager','M.S.','1995','Analysis of Group Divisible Design',NULL,NULL,NULL),
(3809,'Hoang','Lang Nhu','Thomas Shively & Peter John','M.S.','1995','Personal Ozone Moniter: The Eco-Badge',NULL,NULL,NULL),
(3808,'Eure','Stephen Mark','Rafael Llave & Peter John','M.S.','1995','Robust Statistics',NULL,NULL,NULL),
(3807,'Chen','Chih-Chuan','David Young & David Kincaid','M.S.','1995','A Parallel Ssor Method for a Class of Periodic Elliptic Problems',NULL,NULL,NULL),
(3806,'Barnholtz','Jill','Peter John & Thomas Sager','M.S.','1995','Analysis of Covariance and Balancing with Respect to the Covariate',NULL,NULL,NULL),
(3805,'Zook','Nathan','Cameron Gordon & John Luecke','M.S.','1995','On the Classification of Finite Coxeter Groups',NULL,NULL,NULL),
(3804,'West','Michelle Krista','E. W. Cheney & David Kincaid','M.S.','1995','An Introduction to Fourier Series',NULL,NULL,NULL),
(3803,'Wei','Wei','Ayanendranath Basu & Ian Harris','M.S.','1995','Estimation of Variance Components in Split Plot Designs Using Generalized Linear Models',NULL,NULL,NULL),
(3802,'Stovall','Sarah','John Tate & Felipe Voloch','M.S.','1995','Density of Primes Yielding Primitive Points on Elliptic Cures',NULL,NULL,NULL),
(3801,'Qi','Jinghong','Peter John & Ian Harris','M.S.','1995','Methods of Constructing Nested Partially Balanced Incomplete Block Designs',NULL,NULL,NULL),
(3800,'Kyle','Lee Edward','Ralph Cain & Laroy Carry','M.S.','1995','Mathematical Modeling with Polytopes',NULL,NULL,NULL),
(3799,'Gladish','Aaron','Efraim Armendariz & John Durbin','M.S.','1995','Wallpaper Groups',NULL,NULL,NULL),
(3798,'Daghighi','Abdolnaser','Ayanendranath Basu & Peter John','M.S.','1995','Race, Age, Mathematics Background and Mathematics Achievement',NULL,NULL,NULL),
(3797,'Chowdhury','Maruful','Peter John & Ian Harris','M.S.','1995','Control Charts for Process Variance',NULL,NULL,NULL),
(3796,'Chen','Wan','David Young & David Kincaid','M.S.','1995','Parallel Implementation of an Alternating-Type Method',NULL,NULL,NULL),
(3795,'Branstetter','Marcia Lynne','David Young & Robert Van de Geijn','M.S.','1995','Parallel Multigrid Method',NULL,NULL,NULL),
(3794,'Tsuo','I-Chun','Peter John & Ayanendranath Basu','M.S.','1995','Box-Behnken Designs',NULL,NULL,NULL),
(3793,'Smith','Brian','Peter John & James Daniel','M.S.','1995','Analysis of Soybean Futures: a Case Study of Forecasting Seasonal Time Series',NULL,NULL,NULL),
(3792,'Lee','Shu-Nan','Ayanendranath Basu & Peter John','M.S.','1995','Multivariate Analysis Using Practical Components and Clusters Analysis',NULL,NULL,NULL),
(3791,'Jen','Hsiao-Lih','Peter John & Ayanendranath Basu','M.S.','1995','Balanced Incomplete Block Design',NULL,NULL,NULL),
(3790,'Chien','Yung-Hsin','Ian Harris & Ayanendranath Basu','M.S.','1995','Model Checking for Generalized Linear Models',NULL,NULL,NULL),
(3789,'Yi','Sang-ik','Ayanendranath Basu & Peter John','M.S.','1995','Robust Minimum Distance Estimators Based on the Modified L2 Distance',NULL,NULL,NULL),
(3788,'Tang','Yu-Pang','E. W. Cheney & P. T. Konstantopoulos','M.S.','1995','Stability of the Multiple Queuing System Using Drift Analysis',NULL,NULL,NULL),
(3787,'Stephens','James, Jr.','William Schelter & Rafael Llave','M.S.','1995','Computing Grobner Bases',NULL,NULL,NULL),
(3786,'Kuo','Jo-Kang','Ayanendranath Basu & Ian Harris','M.S.','1995','Robust Estimation and Modified L2 Distance',NULL,NULL,NULL),
(3785,'Jones','Mark Christopher','James Daniel & Patrick Brockett','M.S.','1995','A Survey of Credibility Theory in Relation to Bayesian Estimation',NULL,NULL,NULL),
(3784,'Johnson','Dara Leigh','Martha Smith & John Durbin','M.S.','1995','Linear Cyclic Codes',NULL,NULL,NULL),
(3783,'Harder','Jayne Ann','Bruce Palka & Jeffrey Vaaler','M.S.','1995','Functions of Single and Several Complex Variables: a Comparison',NULL,NULL,NULL),
(3782,'Gutierrez-Zamora','A.','Martha Smith & John Durbin','M.S.','1995','Code for Detecting and Correcting Consecutive Errors',NULL,NULL,NULL),
(3781,'Gonzales','Jesse','Efraim Armendariz & Stephen McAdam','M.S.','1995','On Abelian Pi-Regular Rings',NULL,NULL,NULL),
(3780,'Chen','R-Sya','Ralph Showalter & Bill Guy','M.S.','1995','A Distributed Thin Film Capacitance Model',NULL,NULL,NULL),
(3779,'Caughlin','Mary','Ian Harris & Peter John','M.S.','1995','Estimation of Deviance Components in Generalized Linear Models',NULL,NULL,NULL),
(3778,'Bookhart','James, Jr.','Alec Norton & William Lesso','M.S.','1995','The Development of Methods and Techniques to Detect and Model the Underlying Structure of Chaotic Systems',NULL,NULL,NULL),
(3777,'Sacry','Brenda Rae','Hans Koch','M.S.','1989','Spectral Theory for Compact Linear Operators on Banach Spaces',NULL,NULL,NULL),
(3776,'Lesser','Lawrence Mark','Carl Morris','M.S.','1989','Reliability and the Construciton & Interpretation of Tests',NULL,NULL,NULL),
(3775,'Kubicek','Stanley George','Elliott W. Cheney','M.S.','1989','Two Tests on the Optimal Nodes in Polynomial Interpolation',NULL,NULL,NULL),
(3774,'Kessler','Christof Josef','David Firth','M.S.','1989','Statistical Analysis of National Atmospheric Deposition Program (NADP) Texas Data',NULL,NULL,NULL),
(3773,'Hernandez','Paul Diaz','Bruce Palka','M.S.','1989','A Report on Sullivan\'s Eventual Periodicity Theorem',NULL,NULL,NULL),
(3772,'Burnell','Catherine Anne','David Firth','M.S.','1989','Parameter Orthononality and the Mean in Exponential Families',NULL,NULL,NULL),
(3771,'Atchison','Michael Andrew','Don Edmondson','M.S.','1989','Closure Operator Lattices',NULL,NULL,NULL),
(3770,'Watnik','Steven Michael','Ralph Cain','M.S.','1989','Polynomial Rings and the High School Curriculum: A More Theoretical Approach',NULL,NULL,NULL),
(3769,'Sumartinah','Endang','Ward Cheney','M.S.','1989','The Matrix Equation AX + XB = C and its Applications',NULL,NULL,NULL),
(3768,'Stanley','Alfred Thomas','Carl Morris','M.S.','1989','Generalizations of Stein\'s Estimator',NULL,NULL,NULL),
(3767,'Rendek','Kathleen Helen Kelly','Ward Cheney','M.S.','1989','On Numerical Solutions to a Particular Problem in Optimal Control',NULL,NULL,NULL),
(3766,'Nanry','William Paul','Ward Cheney','M.S.','1989','Select Ordering Techniques used in Conjunction with the Preconditional Conjugate Gradient Method',NULL,NULL,NULL),
(3765,'Kennedy','William Allen','Robert Williams','M.S.','1989','Computer Experiments on the Lorenz Attractor',NULL,NULL,NULL),
(3764,'Kamman','Elizabeth Ellen','Jeffrey D. Vaaler','M.S.','1989','Introduction to p-adic Analysis',NULL,NULL,NULL),
(3763,'Buffum','Stephen Wilder','Hinkkanen','M.S.','1989','Balanced Measures on Julia Sets: An Introduction to the Fatou-Julia Theory of Iteration of Complex Rational Functions',NULL,NULL,NULL),
(3762,'Baribault','Carl E.','Showalter','M.S.','1989','A Porous Medium Model Dependent on Storage Cell Geometry',NULL,NULL,NULL),
(3761,'Merz','Brigit','Ward Cheney','M.S.','1988','Analysis of a Nonlinear Bounday Value Problem',NULL,NULL,NULL),
(3760,'Choe','Seung-hyun','Thomas Shively','M.S.','1988','Ozone Data Analysis Based on the Extreme Value Theory',NULL,NULL,NULL),
(3759,'Bishop','Mary Katherine','Carl Morris','M.S.','1988','The Use of Empirical Bayes Method in Traffic Accident Estimation',NULL,NULL,NULL),
(3758,'Stankus','Joseph Martin','Cameron McA Gordon','M.S.','1988','The Skein Relation and the Alexander Polynomial',NULL,NULL,NULL),
(3757,'Santiageo','Marilyn','Austin Gleeson','M.S.','1988','Improvement of the Implicit Finite Difference Code',NULL,NULL,NULL),
(3756,'Bao','Shiao-Chu','Peter John','M.S.','1988','Orthogonal Main Effects Design for 2 37/16',NULL,NULL,NULL),
(3755,'Ting','Yun-Lung','Esa Uusipaikka','M.S.','1988','Error Rates of Four Multiple Comparison Methods',NULL,NULL,NULL),
(3754,'Feng','Wenchun','Peter John','M.S.','1988','Analysis of Convariance Using Regression Packages',NULL,NULL,NULL),
(3753,'Dickson','Patty','Peter John','M.S.','1988','Analysis of Variance with Unequal Numbers of Observations',NULL,NULL,NULL),
(3752,'Berberian','James Gilbert','Carl Morris','M.S.','1988','Simultaneous Variance Estimation',NULL,NULL,NULL),
(3751,'Woodburn','Rose Louise','Carl Morris','M.S.','1987','Applications of the Bootstrap Technique to Linear Regression Models in the Empirical Bayes Framework',NULL,NULL,NULL),
(3750,'Vance','Carroll Stoner','Carl Morris','M.S.','1987','Estimating Variability of Radiation Measurement Devices from Replicated Data',NULL,NULL,NULL),
(3749,'Shannon','Susan','Bruce Palka','M.S.','1987','Mostow\'s Ridigity Thearem',NULL,NULL,NULL),
(3748,'Park','Seong Yong','Peter John','M.S.','1987','Simultaneous Confidence Intervals in Unbalanced Control and Treatment Design',NULL,NULL,NULL),
(3747,'Liang','Hwa Chi','Hinkley','M.S.','1987','Simultaneous Transformation in Regression Models Using GLIM',NULL,NULL,NULL),
(3746,'Vance','Anthony Evans','Don E. Edmondson','M.S.','1987','A Kaplansky Result for Free Modules of Finite Rank Over a P.I.D.',NULL,NULL,NULL),
(3745,'Chen','Nai-Ghing','Peter W. M. John','M.S.','1987','A Computer Program of Exact Simultaneous Confidence Intervals for Multiple Comparisons in General Linear Models',NULL,NULL,NULL),
(3744,'Yee','Gabriella Gar-bo','David Hinkley','M.S.','1987','Double Bootstrap Calculations',NULL,NULL,NULL),
(3743,'Xiao','Shengyou','David M. Young','M.S.','1987','Modified Difference Correction Method for Elliptic Boundary Value Problems',NULL,NULL,NULL),
(3742,'White','Lee Wayne','Efraim Armendariz','M.S.','1987','Strongly Pi-Regular Rings and Matrix Rings over Regular Rings',NULL,NULL,NULL),
(3741,'Straw','Daniel David','Efraim Armendariz','M.S.','1987','Modules and Radicals of Hilbert Rings',NULL,NULL,NULL),
(3740,'Martinez','Frank, III','David Hinkley','M.S.','1987','Survival Data Analysis: Some Models and Examples',NULL,NULL,NULL),
(3739,'Lin','Fu-Jen','Peter W. M. John','M.S.','1987','On Pairwise Comparisons of the Components of the Mean Vector in Multivariate Distribution',NULL,NULL,NULL),
(3738,'Liau','Pen-Hwang','Peter W. M. John','M.S.','1987','Eliminating Time Trends in 2n Factorials',NULL,NULL,NULL),
(3737,'Huang','Pi-Hsiang','Peter W. M. John','M.S.','1987','Orthogonal Main Effects Plans',NULL,NULL,NULL),
(3736,'Howe','Robert Brian','Charles Radin','M.S.','1987','Zero-temperature Limits of Gibbs States',NULL,NULL,NULL),
(3735,'Hatch','Michael A.','Jeffrey Vaaler','M.S.','1987','Some Extremal Functions in Fourier Analysis',NULL,NULL,NULL),
(3734,'Djojosugite','Riante Ahmadi','Peter W. M. John','M.S.','1987','Components-of-Variance Model, the Likelihood-Ratio Test',NULL,NULL,NULL),
(3733,'Sun','Li','Hinkley','M.S.','1986','Review of Spline Method in Regression',NULL,NULL,NULL),
(3732,'McGough','Nancy Ann','Leonard Gillman & Mark Bickford','M.S.','1986','The Axiom of Choice',NULL,NULL,NULL),
(3731,'Kim','Deok-Yeong','Carl Morris','M.S.','1986','Seasonal Adjustment of Economic Time Series',NULL,NULL,NULL),
(3730,'Killam','Timothy Bruce','E. W. Cheney','M.S.','1986','The Singleton Relative Chebyshev Center in Best Simultaneous Approximation',NULL,NULL,NULL),
(3729,'Kapitza','Paul J.','Cameron Gordon','M.S.','1986','On a Theorem of Stallings and Neuwirth Concerning Fibred Knots',NULL,NULL,NULL),
(3728,'Jarre','Florain','David Young','M.S.','1986','Multigrid Methods',NULL,NULL,NULL),
(3727,'Park','Seon Hee','Charles Friedman','M.S.','1986','Gauge Theory and its Application to Physics',NULL,NULL,NULL),
(3726,'Linn','Gary Aubrey','Alan Cline','M.S.','1986','Models and Software for Solar Ponds',NULL,NULL,NULL),
(3725,'Ghjewski','Jane Brozone','William T. Guy','M.S.','1986','A Certain Problem in the Conduction of Heat',NULL,NULL,NULL),
(3724,'Barros','Monica','Carl N. Morris','M.S.','1986','One Parameter Exponential Families: An Overview',NULL,NULL,NULL),
(3723,'Alverado','Alfredo Vaquiax','Anthony C. Davison','M.S.','1986','Regression Models for the Imputation of Missing Values in Ambient Ozone Data',NULL,NULL,NULL),
(3722,'Wilczak','Marianne C.','Clifford Gardner','M.S.','1986','The Solution of Milne\'s Equation by The Technique of Wiener and Hopf',NULL,NULL,NULL),
(3721,'Nam','Kwanghee','Vick','M.S.','1986','Controllability of Affine Nonlinear Systems defined on Compact Manifolds',NULL,NULL,NULL),
(3720,'Lee','Yul Wha','Sam Cox','M.S.','1986','Martingale Properties and their Applications to Financial & Economic Theory',NULL,NULL,NULL),
(3719,'Lau','Sherry','E. Ward Cheney','M.S.','1986','Approximation to a Bivariate Function by the Sum of Products of Two Univariate Functions in the Chebyshev NORM',NULL,NULL,NULL),
(3718,'Gonsalves','Jennifer Kay','Ralph Cain','M.S.','1986','Mathematics Anxiety: Inplications of Selected Research',NULL,NULL,NULL),
(3717,'Gardner','Sharon Kay','Vaaler','M.S.','1986','Algebraic Properties of the Ring of Arithmetical Functions',NULL,NULL,NULL),
(3716,'Crampton','Myrick','E. W. Cheney','M.S.','1986','A Mathematical Introduction to Fluid Mechanics & the Numerical Solution of the Navier-Stokes Equations for the Flow in a Channel with a Backward Step',NULL,NULL,NULL),
(3715,'Coker','Clayton E.','Alan Cline','M.S.','1986','Correction of Cycle Slips in Nondifferenced Phase Data From the TI 4100 Receiver',NULL,NULL,NULL),
(3714,'Vona','Bi Roubolo','David M. Young','M.S.','1985','Finite Difference Solutions of Elleptic and Parabolic Partial Differential Equations on Rectangular Regions: Programs ELIPBVP and IVPROBM',NULL,NULL,NULL),
(3713,'Stevens','David Paul','Anthony C. Davison','M.S.','1985','A Statistical Model for Forecasting University Enrollment',NULL,NULL,NULL),
(3712,'Scheiffele','Eberhard','Michael Starbird','M.S.','1985','Types of points in the Stone-Cech Compartifications of the natural numbers',NULL,NULL,NULL),
(3711,'Rutter','Charles Craig','Frank E. Gerth','M.S.','1985','Selected Topics in Algebraic Number Theory',NULL,NULL,NULL),
(3710,'Nelson','Michael David','Linda J. Hayes','M.S.','1985','A Study of Mathematical Models Used to Simualte the Human Thermal System',NULL,NULL,NULL),
(3709,'Guang','Shi Sheng','Hinkley & Davison','M.S.','1985','Multinode Classification Tree',NULL,NULL,NULL),
(3708,'Denny','Stephen','Gary Hamrick','M.S.','1985','D\'Alembert\'s Principle',NULL,NULL,NULL),
(3707,'Toellner','Robert Louis, Jr.','Gary Hamrick','M.S.','1985','Microbundles are fiber bundles',NULL,NULL,NULL),
(3706,'Morse','Jack Neil','Gary Hamrick','M.S.','1985','',NULL,NULL,NULL),
(3705,'Kim','Kyungsook','Paul Jensen','M.S.','1985','Network Models with Convex Costs',NULL,NULL,NULL),
(3704,'Khazenie','Nahid','Ron Butler','M.S.','1985','Bound on the P-Value of the Best Fitting Regessor Variable Calculated to a Prespecified Accuracy',NULL,NULL,NULL),
(3703,'Johnson','Valen E.','Carl Morris','M.S.','1985','Properties of the Extreme Stable Laws and Numerical Evaluation of Natural Exponential Families Generated from Extreme Stable Laws',NULL,NULL,NULL),
(3702,'McDaniel','Raymond Graham, Jr.','Peter W. M. John','M.S.','1985','Actuarial Graduation: Statistical Techniques for Analyzing Mortality Data',NULL,NULL,NULL),
(3701,'Lee','Myung Hwi','David V. Hinkley','M.S.','1985','A Partial Review of Ancillarity',NULL,NULL,NULL),
(3700,'Church','John Cabell','Edward W. Odell','M.S.','1985','Cominatorics and Banach Spaces',NULL,NULL,NULL),
(3699,'Steffy','Kathy Rae','Carl Morris','M.S.','1984','The Group Sampling Model: A Computer Program for Statistical Experimental Desgin',NULL,NULL,NULL),
(3698,'Pan','Ying Ying Pamela','Peter John','M.S.','1984','Rigde Regression: Biased Estimation in Practice',NULL,NULL,NULL),
(3697,'Lu','Chi-Hsien Joseph','David Hinkley','M.S.','1984','Diagnostic Tests for Transformations in Linear Models',NULL,NULL,NULL),
(3696,'Loh','Yin-Loong','Peter John','M.S.','1984','Diagnostic Measures for Detecting Influential Points and Outliers',NULL,NULL,NULL),
(3695,'Liu','David Jifeng','Alan Cline','M.S.','1984','The Use of Splines for The Solution of Singular Integral Equation of Cauchy Type',NULL,NULL,NULL),
(3694,'de Andrade','Elizabeth','David M. Young & Kamy Sepehrnoori','M.S.','1984','Comparative Study of Direct and Iterative Methods of Solving Linear Systems Arising from Waterflooding Problems',NULL,NULL,NULL),
(3693,'Chang','Lichin','Peter John','M.S.','1984','Three-Quarter Replicates of 2n Designs',NULL,NULL,NULL),
(3692,'Snyder','Campbell Hodges','R. E. Showalter','M.S.','1984','An Application of Semi-State Analysis to a Distributed Network',NULL,NULL,NULL),
(3691,'Schneider','Petra Kathleen','Peter W. M. John','M.S.','1984','The Treatment of Questionable Observations in the Analysis of Variance for Crossed Classification',NULL,NULL,NULL),
(3690,'Dong-Hun','Han','Carl Mueller','M.S.','1984','',NULL,NULL,NULL),
(3689,'Daniels','Danni Sue','Peter John','M.S.','1984','The Detection of a Bad Observation in an Unreplicated 2n Factorial Experiment',NULL,NULL,NULL),
(3688,'Castillo-Moreno','Jose','David S. Scott','M.S.','1984','Symmetric Matrices Using the Lanczos Algorithms',NULL,NULL,NULL),
(3687,'Babich','Amy','Gary Hamrick','M.S.','1984','The Loop and Sphere Theorems',NULL,NULL,NULL),
(3686,'Wu','Tsui-Fen','Abraham Charnes','M.S.','1984','M. D. I. Theorem Review and Application',NULL,NULL,NULL),
(3685,'LeKander','Jan Conrad','Clifford S. Gardner','M.S.','1984','Asymptotic Expansion Methods for Jump Phenomena',NULL,NULL,NULL),
(3684,'Jung','Kyung Hee','Abraham Charnes','M.S.','1984','Steins Paradox Review',NULL,NULL,NULL),
(3683,'Choi','Seungnook','David Hinkley','M.S.','1984','Separability Test in Monetary Aggregates',NULL,NULL,NULL),
(3682,'Abbasian','Reza Oraiee','David M. Young','M.S.','1984','Lanczos Algorithms for the Acceleration on Nonsymmetrizable Iterative Methods',NULL,NULL,NULL),
(3681,'Yu','Chien-Chih','Paul A. Jensen','M.S.','1983','Three tree structures for data processing in Dynamic Programming',NULL,NULL,NULL),
(3680,'Seymour','Timothy M.','Bruce Palka','M.S.','1983','A Theorem of Grauert\'s on Stein Manifolds',NULL,NULL,NULL),
(3679,'Schneider','Joseph Robert, Jr.','Haskell Rosenthal','M.S.','1983','An Analytic Characterization of Two Dimensional Banach Spaces with Applications to Extenders',NULL,NULL,NULL),
(3678,'Norris','David Robert','Martha K. Smith','M.S.','1983','The Structure of Clifford Algebras Over Fields of Characteristic Not Tow',NULL,NULL,NULL),
(3677,'Nguyen','Nung Nang','William T. Eaton','M.S.','1983','Decomposition Spaces',NULL,NULL,NULL),
(3676,'Linn','Gita Talmage','Graham F. Carey','M.S.','1983','Oscillatory Modes in Finite Element Approximation of Shallow Water Equations: Free Oscillations',NULL,NULL,NULL),
(3675,'Hu','Li-Hwa','Abraham Charnes','M.S.','1983','Applications of Chance-constrained Programming Method',NULL,NULL,NULL),
(3674,'Cheng','Chi-Lun','Lawrence Williams','M.S.','1983','',NULL,NULL,NULL),
(3673,'Ashcraft','Claud Cleveland','David Scott','M.S.','1983','Adams Type Methods Using Cubic Splines',NULL,NULL,NULL),
(3672,'McCutcheon','Carl Lynn','Bruce Palka','M.S.','1983','Bers Imbedding of the Teichmiller Space',NULL,NULL,NULL),
(3671,'Lu','Wanh-Shu','Carl N. Morris','M.S.','1983','Parametric Empirical Bayes Estimation',NULL,NULL,NULL),
(3670,'Jones','Kevin Stavely','Peter W. M. John','M.S.','1983','The Noncentral Chi-Squated and Chi Distributions with an Application to Radioastronomy',NULL,NULL,NULL),
(3669,'High','Robin Ray','Peter W. M. John','M.S.','1983','Center Points in Response Surface Designs',NULL,NULL,NULL),
(3668,'Haensly','Paul Joseph','Fred Weissler','M.S.','1983','Stability and Convergence of Spectral Method Approximations to Solutions of Mixed Initial Value - Boundary Value Problems',NULL,NULL,NULL),
(3667,'Chao','Chiangsun','Peter W. M. John','M.S.','1983','Optimal Design in Statistical Experiments',NULL,NULL,NULL),
(3666,'Anderson','Janis Lyn','David Young, Jr.','M.S.','1983','An Investigation of a Shifted Incomplete Choles? Facterication Procedure Used as an Iterative Method to Solve Large Sparse Linar Systems',NULL,NULL,NULL),
(3665,'Guerra','Rafael Diaz','Peter John','M.S.','1982','Analysis of Some Transformation',NULL,NULL,NULL),
(3664,'Smith','Kathryn Ann','Peter W. M. John','M.S.','1982','Tests for Non-Additivity in the Two-Way Layout with One Observation Per Cell',NULL,NULL,NULL),
(3663,'Hill','Joe Robert','Carl N. Morris','M.S.','1982','Improving Failure Rate Estimation Using Parametric Empirical Bayes',NULL,NULL,NULL),
(3662,'Whipple','Arthur Lester','Murray Cantor','M.S.','1982','Regions of Stability about the Triangular Equilibrium Points of the Restricted Problem of Three Bodies',NULL,NULL,NULL),
(3661,'Gordon','David','Roger Osborn','M.S.','1982','Classical Lie Groups in the Study of Twistor Theory',NULL,NULL,NULL),
(3660,'Sadeghan','Hossein','Roger Osborn','M.S.','1982','Classical Lie Groups in the Study of Twistor Theory',NULL,NULL,NULL),
(3659,'Dosch','Anne Marie Elizabeth','Carl N. Morris','M.S.','1982','Methods of Criticizing Linear Regression Models in Statistics',NULL,NULL,NULL),
(3658,'Moore','Elsa Lutz','Gibb','M.S.','1982','',NULL,NULL,NULL),
(3657,'King','Marcia','Cain','M.S.','1982','',NULL,NULL,NULL),
(3656,'Dempsey','Gail Ann Urbanosky','Gibb','M.S.','1982','',NULL,NULL,NULL),
(3655,'Cantwell','Brenda K.','Gibb','M.S.','1982','',NULL,NULL,NULL),
(3654,'Holley','Kevin Craig','R. E. Showalter','M.S.','1981','Eigenvalue Characterication by Variational Principles',NULL,NULL,NULL),
(3653,'Friedrichs','Mark Stephen','Murray Cantor','M.S.','1981','Methods for Determining the Eigenvalues of the Regular Sturm-Liouville System',NULL,NULL,NULL),
(3652,'Matovsky','John-Anton Charles','Murray R. Cantor','M.S.','1981','The Neumann Problem in Lp over a Bounded Domain in Rn',NULL,NULL,NULL),
(3651,'Diamond','Joy Elaine','John E. Gilbert','M.S.','1981','Sperical Harmonics and Satellite Orbits',NULL,NULL,NULL),
(3650,'Lodell','Drew Frank','Gerald A. Shea','M.S.','1981','Use of Minimum Discrimination Information in an Applied Problem',NULL,NULL,NULL),
(3649,'Beneish','Esther','Martha K. Smith','M.S.','1981','Polynomials with Galois Group PSL (2.7)',NULL,NULL,NULL),
(3648,'Hutchinson','Thomas Clement','Bichteler','M.S.','1981','',NULL,NULL,NULL),
(3647,'Leonard','Lee Orville, Jr.','William T. Eaton','M.S.','1980','A Comparison of Fibrations and Covering Projections',NULL,NULL,NULL),
(3646,'Shaparenko','Robert John','Bruce P. Palka','M.S.','1980','Topics in Geometric Function Theory',NULL,NULL,NULL),
(3645,'Petkewicz','Robert Joseph','Carl N. Morris','M.S.','1980','A Comparison of Linear and Quantile Test Equating',NULL,NULL,NULL),
(3644,'Parks','Gary Edward','Bruce P. Palka','M.S.','1980','Koebe Uniformization Theorem',NULL,NULL,NULL),
(3643,'Neidinger','Richard Dean','Lawrence R. Williams','M.S.','1980','Three Versions of the Spectral Theorem for Normal Operators',NULL,NULL,NULL),
(3642,'Hintaka','Paul Norman','Randolph E. Bank','M.S.','1980','On the Solution of a Block Banded System of Linear Equations Arising from Finite Difference Approximations',NULL,NULL,NULL),
(3641,'Crockett','Moton Haywood, III','Robert E. Greenwood','M.S.','1980','Walter\'s Pennies',NULL,NULL,NULL),
(3640,'Bern','Marshall Wayne','Patrick Brockett','M.S.','1980','The Problem of Identifying Multivariate Survival Distributions',NULL,NULL,NULL),
(3639,'Young','Melanie Lynne','Charles Friedman','M.S.','1979','Asymptotic Analysis of Product Integrals as Solutions of Ordinary Differential Equations',NULL,NULL,NULL),
(3638,'Wiese','Robert Charles','','M.S.','1979','On the Use of Conformal Mapping Theory in the Study of Irrotational and Incompressible Flows',NULL,NULL,NULL),
(3637,'White','Jeff William','Bruce Palka','M.S.','1979','Automorphism Groups on Compact Riemann Surfaces',NULL,NULL,NULL),
(3636,'Poppen','Elizabeth Ann','Martha Smith','M.S.','1979','Properties fo a Special Ring of Integers',NULL,NULL,NULL),
(3635,'Lee','Chi-Hsaung Florence','Peter John','M.S.','1979','Saturated Functions on 2n Designs',NULL,NULL,NULL),
(3634,'Gonzalez','Ruth','Andrew White, Jr.','M.S.','1979','The Numerical Solution of the Depth Separated Acostic Wave Equation',NULL,NULL,NULL),
(3633,'Evans','Patricia Ann Thomas','Martha Smith','M.S.','1979','Transcendental Fixed Fields',NULL,NULL,NULL),
(3632,'Whittington','Sarah Jeanne Campbell','H. Elton Lacey','M.S.','1979','Topology of Metric Spaces',NULL,NULL,NULL),
(3631,'Tsutsui','Masanori','Bruce Palka','M.S.','1979','Boundary Extension Problems fo rQuasiconformal Mappings',NULL,NULL,NULL),
(3630,'Rasmussen','Richard Nelson','Charles Radin','M.S.','1979','The Hamiltonian Operator',NULL,NULL,NULL),
(3629,'Powell','Dennis Ray','Andrew White, Jr.','M.S.','1979','Linear Bearing Estimation for Sonar Line Arrays',NULL,NULL,NULL),
(3628,'Petkoff','Paul Steven','Gerald Shea','M.S.','1979','Stein\'s Estimator with Examples and Extensions',NULL,NULL,NULL),
(3627,'Jordan','Michael Charles','John Dollard','M.S.','1979','Variable Domain Evolutions Equations',NULL,NULL,NULL),
(3626,'Gentry','Milton Leon, Jr.','James W. Daniels','M.S.','1979','A comparison of the Computer Rounding Errors of the Implicit Method, Parallel Shooting, and Invariant Imbedding',NULL,NULL,NULL),
(3625,'Durrin','Charles Sterling, III','Randolph Bank','M.S.','1979','A Comparison of Two Strategies for the Multi-Level Solution of Finite Element Equations',NULL,NULL,NULL),
(3624,'Booth','Mae Owens','Elton Lacey','M.S.','1979','On Conditional Expectation',NULL,NULL,NULL),
(3623,'Berkas','David Roger','Peter W. M. John','M.S.','1979','Half-Normal Plots',NULL,NULL,NULL),
(3622,'Wolf','Candy Ryan','Patrick Brockett','M.S.','1979','Comparative Monte Carlo Study of Discrete Discriminant Analysis Error Rates',NULL,NULL,NULL),
(3621,'Smith','David Charles','Bruce Palka','M.S.','1979','On Partial Fraction and Infinite Product Decompositions of Meromorphic and Analytic Functions',NULL,NULL,NULL),
(3620,'Shi-San-Ju','Lin','Peter John','M.S.','1979','Extended Partially Balanced Incomplete Block Designs with Two Associate Classes',NULL,NULL,NULL),
(3619,'Renka','Robert Joseph','Graham Carey','M.S.','1979','Nonlinear Membrane Analysis',NULL,NULL,NULL),
(3618,'Leon','Mark Robert','Patrick Brockett','M.S.','1979','Principal Component Analysis and Factor Analysis As Exploratory Tools in the Analysis of Categorical Data',NULL,NULL,NULL),
(3617,'Hanson','Harlin Alan','Anne Leggett','M.S.','1979','The Complexity of Only Matrix Multiplication',NULL,NULL,NULL),
(3616,'Fountain','Robert Lewis','Stephen McAdam','M.S.','1979','The Stability of the Assassinator',NULL,NULL,NULL),
(3615,'Chavous','Charles Douglas, Jr.','Abraham Charnes','M.S.','1979','The Chance-Constrained Programming Method',NULL,NULL,NULL),
(3614,'Bradford','Bert Larue','Bruce Palka','M.S.','1979','The Dirichlet Problem',NULL,NULL,NULL),
(3613,'Boyd','Martha Karen','Jeffrey Nunemacher','M.S.','1979','Domains of Holomorphy',NULL,NULL,NULL),
(3612,'Avini','Mostafa','Armendariz','M.S.','1979','Self-Injective Rings',NULL,NULL,NULL),
(3611,'Thierer','Andrew Peter','Sherman','M.S.','1978','A Comparison of Ordering Schemes for Profile Minimazation of Sparse Symmetric Matrices',NULL,NULL,NULL),
(3610,'Streeter','Patricia Wimmer','Daniel','M.S.','1978','Stability, Consistency, and Convergence of Numerical Solutions for Differential Equations',NULL,NULL,NULL),
(3609,'Starbird','Roberta Parrish','Eaton','M.S.','1978','Alexander Linear Isotopy Theorem in R2',NULL,NULL,NULL),
(3608,'Sinnett','Mark Wallace','Dollard','M.S.','1978','The Spaces: Variations on a Theme by Lebesque',NULL,NULL,NULL),
(3607,'Keeton-Williams','Karen Elizabeth','McAdam','M.S.','1978','Graded Rings and Their Applications',NULL,NULL,NULL),
(3606,'Farr','Dennis James','Alan Cline','M.S.','1978','The Accuracy of Three Condition Number Estimates',NULL,NULL,NULL),
(3605,'Woo','Kin-Chu','Larry Shumaker','M.S.','1978','The Effectiveness of the Interpolating Programs',NULL,NULL,NULL),
(3604,'Richardson','Edgar Wayne','John','M.S.','1978','The Analysis of Variance of Incomplete Block Designs With A Missing Block',NULL,NULL,NULL),
(3603,'Morton','Michael Joe','Peter John','M.S.','1978','Simultaneous Inference Procedures',NULL,NULL,NULL),
(3602,'Lee','Hsiang','Andy White','M.S.','1978','Comparison of Step-Size Monitors for Initial-Value Codes',NULL,NULL,NULL),
(3601,'Gully','Russell George','Peter John','M.S.','1978','Factorial Structure in 2n Factorial Experiments',NULL,NULL,NULL),
(3600,'Ismail','Safeya Mahmoud','Andy White','M.S.','1978','On the solution of singularly perturbed linear systems with application to boundary-value problems',NULL,NULL,NULL),
(3599,'Hooper','Milton Leroy','Simon Bernau','M.S.','1978','Subnormality and Semi-Groups of Bounded Linear Operators',NULL,NULL,NULL),
(3598,'Goodrich','Benjamin Briggs','Klaus Bichteler','M.S.','1978','Statistics: A Frequentist Approach',NULL,NULL,NULL),
(3597,'Fisher','Timothy Lee','David Young','M.S.','1978','Mathematical Background and User\'s Guide for LINPACK',NULL,NULL,NULL),
(3596,'Emmons','David Wayne','H. Elton Lacey','M.S.','1978','On the Existence of an Equilibrium in a Pure Exchange Economy with Perfect Competition',NULL,NULL,NULL),
(3595,'Pearce','Pamela Gail Fonda','Guy','M.S.','1978','',NULL,NULL,NULL),
(3594,'Morton','Michael Jo','John','M.S.','1978','',NULL,NULL,NULL),
(3593,'Jordan','Michael Charles','Dollard','M.S.','1978','',NULL,NULL,NULL),
(3592,'Wang','Li-hsing','Larry Shumaker','M.S.','1977','Comparison of Several Methods for Fitting Surface to Scattered Data',NULL,NULL,NULL),
(3591,'Shaparenko','I-Ming Alice Hwai','H. Elton Lacey','M.S.','1977','Reflexivity and Order Continuity on Banach Lattices',NULL,NULL,NULL),
(3590,'Rusk','Ruth Duran','Martha Smith','M.S.','1977','Group Algebras of Finite Groups of Low Order',NULL,NULL,NULL),
(3589,'Rusk','David Alla+C257n','W. T. Guy','M.S.','1977','An Integral Transform with Kernel e-(st)m(st)m-1',NULL,NULL,NULL),
(3588,'McKenzie','David Warren','Peter John','M.S.','1977','The Analysis and Adjustment of Survey Networks',NULL,NULL,NULL),
(3587,'Knaus','Nadine Lenn','Gerald Shea','M.S.','1977','Consistency Properties of Two Nonparametric Density Estimates',NULL,NULL,NULL),
(3586,'Foley','Gregory Dean','W. T. Eaton','M.S.','1977','The Fundamental Group of the Compliment of a Finite Graph',NULL,NULL,NULL),
(3585,'Harbin','William Kennon, Jr.','Peter W. M. John','M.S.','1977','Partially Balanced Association Schemes for 64 Varieties',NULL,NULL,NULL),
(3584,'Christiansen','Rebecca Lee Frantz','H. Elton Lacey','M.S.','1977','Optimization of Functionals',NULL,NULL,NULL),
(3583,'Ruiz','Luis Enrique','Andrew B. White','M.S.','1977','Numerical and Analytical Studies of the Flow Between Counter-Rotating Disks',NULL,NULL,NULL),
(3582,'Raburn','Dora Lynn','William T. Eaton','M.S.','1977','A Characterization of the 2-sphere',NULL,NULL,NULL),
(3581,'Phillips','Gregory Charles','Peter W. M. John','M.S.','1977','Non-Isomorphic Symmetric Balanced Incomplete Block Designs',NULL,NULL,NULL),
(3580,'Jerkofsky','James Joseph','Efraim Armendariz','M.S.','1977','Pseudoinverses and Similar Matrices',NULL,NULL,NULL),
(3579,'Guillementte','Ronald Armand','Efraim P. Armendariz','M.S.','1977','Modules and Rings with DCC on Essential Sobmodules',NULL,NULL,NULL),
(3578,'Eldred','Barry Stephen','Peter W. M. John','M.S.','1977','Response Surface Designs for Constrained Three-Factor Mixture Problems',NULL,NULL,NULL),
(3577,'de Anzola','Eva Margarita Padron Guzman','Efraim P. Armendariz','M.S.','1977','Additive and Multiplicative Decomposition of Square Matrices',NULL,NULL,NULL),
(3576,'Caples','Jeremiah Joseph, Jr.','Efraim P. Armendariz','M.S.','1977','Communicative Semihereditary Rings',NULL,NULL,NULL),
(3575,'Barber','Sandra Margaret','Gaineford J. Hall','M.S.','1977','Four Queueing Systems',NULL,NULL,NULL),
(3574,'Bonner','Julie Ann','Eaton','M.S.','1977','',NULL,NULL,NULL),
(3573,'Shaparenko','Raymond Allen','Bruce P. Palka','M.S.','1976','Discontinuous Groups and Automorphic Functions',NULL,NULL,NULL),
(3572,'Richter','Jan Paul','C. Dale Zinn','M.S.','1976','Group Optimal Bidding for Oil Land Leases',NULL,NULL,NULL),
(3571,'Niblack','Carlton Wayne','Alan K. Cline','M.S.','1976','Computing the Singular Value Decomposition Using Relaxation with Application to Image Matrices',NULL,NULL,NULL),
(3570,'McGlothlin','Kathryn Ann McDonald','Simon Bernau','M.S.','1976','Some Properties of Conformal Mappings of Simply and Multiply Connected Domains',NULL,NULL,NULL),
(3569,'Grimes','Roger Giles','John R. Cannon','M.S.','1976','Flow in a Two-dimensional Reservoir and Connecting Pipe',NULL,NULL,NULL),
(3568,'Embry','Robin Ray','H. Elton Lacey','M.S.','1976','Optimization of a Non-differentiable Functional',NULL,NULL,NULL),
(3567,'Chan','Wai Tat','Gordon Pledger','M.S.','1976','On Stochastic Approximation',NULL,NULL,NULL),
(3566,'Tran','Hung Viet','Martha K. Smith','M.S.','1976','Some Basic Results in Finite Permutation Groups',NULL,NULL,NULL),
(3565,'Miller','Charlotte','H. Elton Lacey','M.S.','1976','On The Geometry of Finite Dimensional Banach Spaces',NULL,NULL,NULL),
(3564,'Garcia','Alma Hernandez','H. Elton Lacey','M.S.','1976','On Ultraproducts of Lp Spaces',NULL,NULL,NULL),
(3563,'Shorba','Charles John','McAdam','M.S.','1976','',NULL,NULL,NULL),
(3562,'Long','Leonard Rodney','Greenleaf','M.S.','1976','',NULL,NULL,NULL),
(3561,'Hobbs','Sharon Stewart','Armendariz','M.S.','1976','',NULL,NULL,NULL),
(3560,'Harbin','William Kenton, Jr.','John','M.S.','1976','',NULL,NULL,NULL),
(3559,'Gentry','Alice Meyer','Daniel','M.S.','1976','',NULL,NULL,NULL),
(3558,'Evans','James Christopher','John','M.S.','1976','',NULL,NULL,NULL),
(3557,'Collier','Dennis Stuart','Friedman','M.S.','1976','',NULL,NULL,NULL),
(3556,'Thurmond','Lynn G.','Edmondson','M.S.','1975','',NULL,NULL,NULL),
(3555,'Klinksiek','Rudy V.','Guy','M.S.','1975','',NULL,NULL,NULL),
(3554,'Corser','Glenn P.','John','M.S.','1975','',NULL,NULL,NULL),
(3553,'Coldwell','Peggy Anne','Hamrick','M.S.','1975','',NULL,NULL,NULL),
(3552,'Bean','Robert Charles','John','M.S.','1975','',NULL,NULL,NULL),
(3551,'Stover','John Lawrence','Russell','M.S.','1975','',NULL,NULL,NULL),
(3550,'Hamilton','Nancy S.','Armendariz','M.S.','1975','',NULL,NULL,NULL),
(3549,'Dolan','Cynthia','Russell','M.S.','1975','',NULL,NULL,NULL),
(3548,'Coldwell','Peggy Ann','','M.S.','1975','',NULL,NULL,NULL),
(3547,'Chao','Lily Ni','John','M.S.','1975','',NULL,NULL,NULL),
(3546,'Barnes','Kathy','Pledger','M.S.','1975','',NULL,NULL,NULL),
(3545,'Shirley','Frank Theodore','Smith','M.S.','1975','',NULL,NULL,NULL),
(3544,'Henderson','James P.','','M.S.','1975','',NULL,NULL,NULL),
(3543,'Brooks','Steven R.','','M.S.','1975','',NULL,NULL,NULL),
(3542,'Stewart','John Harlan','Iarrabino','M.S.','1975','',NULL,NULL,NULL),
(3541,'Smith','Michael Lee','Cheney','M.S.','1975','',NULL,NULL,NULL),
(3540,'Schlattman','Daniel Tucker','Greenleaf','M.S.','1975','',NULL,NULL,NULL),
(3539,'Rapp','Martha Cheryer','Daniel','M.S.','1975','',NULL,NULL,NULL),
(3538,'Martin','Andrew James','Daniel','M.S.','1975','',NULL,NULL,NULL),
(3537,'Markarsky','Joseph Gerhard','Wolff','M.S.','1975','',NULL,NULL,NULL),
(3536,'Kennedy','Charles Elmer','Daniel','M.S.','1975','',NULL,NULL,NULL),
(3535,'Chow','Francis Sui-Hon','Gregory','M.S.','1975','',NULL,NULL,NULL),
(3534,'Steward','John H.','Iarrobino','M.S.','1974','',NULL,NULL,NULL),
(3533,'Martin','Andrew J.','','M.S.','1974','',NULL,NULL,NULL),
(3532,'Chow','Francis S.','Gregory','M.S.','1974','',NULL,NULL,NULL),
(3531,'Barreto','Hise Arturo','Gregory','M.S.','1974','',NULL,NULL,NULL),
(3530,'Richard','Penelope Ann','Pledger','M.S.','1974','',NULL,NULL,NULL),
(3529,'Owen','Rosemary Mary Jarboe','Greenwood','M.S.','1974','',NULL,NULL,NULL),
(3528,'McCollum','Donald Clark','McAdam','M.S.','1974','',NULL,NULL,NULL),
(3527,'Kay','May','Osborn','M.S.','1974','',NULL,NULL,NULL),
(3526,'Hayes','Linda Joyce Hanes','Young','M.S.','1974','',NULL,NULL,NULL),
(3525,'Godfrey','James Philip','Charnes','M.S.','1974','',NULL,NULL,NULL),
(3524,'Carter','Joe Lloyd','Eaton','M.S.','1974','',NULL,NULL,NULL),
(3523,'Baldwin','Mora Jane','Greenwood','M.S.','1974','',NULL,NULL,NULL),
(3522,'Baker','Claudia Burnett','Guy','M.S.','1974','',NULL,NULL,NULL),
(3521,'Whitman','David H.','A. Iarrobino','M.S.','1973','',NULL,NULL,NULL),
(3520,'Urick','Linda J.','N. Greenleaf','M.S.','1973','',NULL,NULL,NULL),
(3519,'Thompson','Tommy J.','R. C. Osborn','M.S.','1973','',NULL,NULL,NULL),
(3518,'Sunderland','Susan Ann Knott','J. W. Fisher','M.S.','1973','',NULL,NULL,NULL),
(3517,'Ssebayigga','Elisha S.','P. W. M. John','M.S.','1973','',NULL,NULL,NULL),
(3516,'Pearson','Nelda Shirlene','J. W. Fisher','M.S.','1973','',NULL,NULL,NULL),
(3515,'Kulvicki','Dennis M.','W. T. Guy','M.S.','1973','',NULL,NULL,NULL),
(3514,'Hill','Thomas Robert','J. W. Daniel','M.S.','1973','',NULL,NULL,NULL),
(3513,'Bonner','Julie A.','W. T. Eaton','M.S.','1973','',NULL,NULL,NULL),
(3512,'Ray','Roger Fravel','Greenleaf','M.S.','1973','',NULL,NULL,NULL),
(3511,'Miller','T. A., III','Dollard','M.S.','1973','',NULL,NULL,NULL),
(3510,'Ferguson','Vicki Linda Brown','Joshi','M.S.','1973','',NULL,NULL,NULL),
(3509,'Coffman','Kenneth Lynn','Vick','M.S.','1973','',NULL,NULL,NULL),
(3508,'Clark','Janet Ann','Wolff','M.S.','1973','',NULL,NULL,NULL),
(3507,'Yuan','Stephen Hsin Sun','S. W. Joshi','M.S.','1972','Some Properties of the Correlated Bivariate Power Series Distributions',NULL,NULL,NULL),
(3506,'Bell','William Edward','W. T. Eaton','M.S.','1972','The Jordan Curve Theorem',NULL,NULL,NULL),
(3505,'Ward','Robert Calkins','Joshi','M.S.','1972','Stochastic Epidemic Processes',NULL,NULL,NULL),
(3504,'Walton','John Monte','John','M.S.','1972','Experiments with mixtures: transformation of the response',NULL,NULL,NULL),
(3503,'Seiford','Lawrence Martin','Lorentz','M.S.','1972','On the E-entropy of totally bounded subsets of Metric spaces',NULL,NULL,NULL),
(3502,'Neunaber','Gregory L.','Vick','M.S.','1972','Smith Homology Theory',NULL,NULL,NULL),
(3501,'Jensen','Gary Dean','Edmondson','M.S.','1972','Theoretic Theorems Concerning the Submodule of a Module',NULL,NULL,NULL),
(3500,'Wilson','Teri Charleen','Lacey','M.S.','1972','',NULL,NULL,NULL),
(3499,'Well','Thomas George','Cannon','M.S.','1972','On the determination of the diffusivity of a medium',NULL,NULL,NULL),
(3498,'Ewing','Richard E.','Cannon','M.S.','1972','The approximation of the solution to Laplace\'s Equation in a bounded subset of half space from interior data',NULL,NULL,NULL),
(3497,'Duyka','Donald Louis','Guy','M.S.','1972','',NULL,NULL,NULL),
(3496,'Pfein','Tran','Young','M.S.','1972','',NULL,NULL,NULL),
(3495,'Kincaid','Carol Elaine Essig','McAdam','M.S.','1972','',NULL,NULL,NULL),
(3494,'Hagy','Lee Ericson','Ramanoorthy','M.S.','1972','',NULL,NULL,NULL),
(3493,'Williams','Elizabeth','Lacey','M.S.','1971','Characterizations of Compact Metric Spaces',NULL,NULL,NULL),
(3492,'Thuan','Ly Cong','Joshi','M.S.','1971','Minimum Variance Unbiased Estimation for Functions of Truncation Properties',NULL,NULL,NULL),
(3491,'Johnson','Sarah Elizabeth Harvey','Lacey','M.S.','1971','Semi-Continuous Functions',NULL,NULL,NULL),
(3490,'Stones','David Hal','Lacey','M.S.','1971','Banach Space of Universal Disposition',NULL,NULL,NULL),
(3489,'Parsons','Julie Johns','Lacey','M.S.','1971','Concerning Partitions of Unity',NULL,NULL,NULL),
(3488,'Faller','Lorelei S.','Joshi','M.S.','1971','A Survey of Selected Solutions of the Behrens-Fisher Problem',NULL,NULL,NULL),
(3487,'Belshe','Jerry Dean','Osborn','M.S.','1971','On the Proof o fthe Quadratic Reciprocity Law',NULL,NULL,NULL),
(3486,'Tipton','Marilyn','Guy','M.S.','1971','',NULL,NULL,NULL),
(3485,'Rogers','Linda Gayle','Greenwood','M.S.','1971','An Examination of Room Square',NULL,NULL,NULL),
(3484,'Midence','Roberto Francisco Montano','Ker','M.S.','1971','',NULL,NULL,NULL),
(3483,'Clay','David Wayne','Armendariz','M.S.','1971','The Jacobson Radical of Rings and Moduls',NULL,NULL,NULL),
(3482,'Blair','Georgianna','Don Edmondson','M.S.','1971','A Theory for Integrating Functions which are Bounded on a Countable Set',NULL,NULL,NULL),
(3481,'Pratt','Robert Barton, Jr.','Schumaker','M.S.','1971','',NULL,NULL,NULL),
(3480,'Montano','Roberto Francisco','Kerr','M.S.','1971','',NULL,NULL,NULL),
(3479,'Meyer','Loreli','Joshi','M.S.','1971','',NULL,NULL,NULL),
(3478,'Lennington','Richard Kent','Joshi','M.S.','1971','',NULL,NULL,NULL),
(3477,'de Roche','Patricia Margaret Fuller','Richter','M.S.','1971','',NULL,NULL,NULL),
(3476,'Coldwell','Peggy','Hamrick','M.S.','1971','',NULL,NULL,NULL),
(3475,'Anderson','Thomas Edward','Schumaker','M.S.','1971','',NULL,NULL,NULL),
(3474,'Wilson','Peggy Jo','Elton Lacey','M.S.','1970','Perfect Squares',NULL,NULL,NULL),
(3473,'Wene','Gregory P.','Efraim Armendariz','M.S.','1970','Commutativity Theorems for Devision Rings',NULL,NULL,NULL),
(3472,'Murray','Marcia Berta','Roger Osborn','M.S.','1970','Primitive Root of Gaussian Primes',NULL,NULL,NULL),
(3471,'Bordano','Rita Jannette','John R. Durbin','M.S.','1970','Some Congruence Properties of the Petition Function',NULL,NULL,NULL),
(3470,'Packwood','Gerald W.','Roger Osborn','M.S.','1970','Test of Primality',NULL,NULL,NULL),
(3469,'Kinnersley','Nancy G.','Elton Lacey','M.S.','1970','Topology of the Irrational Numbers',NULL,NULL,NULL),
(3468,'Henderson','Stanley Howard','Roger Osborn','M.S.','1970','Pseudoprime Numbers',NULL,NULL,NULL),
(3467,'Zimmermann','Patricia','Dale E. Walston','M.S.','1970','Gradient Methods for Solving Systems of Linear Equations',NULL,NULL,NULL),
(3466,'Micklethwait','James','John Cannon','M.S.','1970','Numerical Determination of Unknown Parameters in Analytic Systems of Ordinary Differential Equations',NULL,NULL,NULL),
(3465,'Luebbe','Richard L.','William Guy','M.S.','1970','',NULL,NULL,NULL),
(3464,'Hoa','Bui Dang','H. Elton Lacey','M.S.','1970','The Uniqueness of the Circle Group',NULL,NULL,NULL),
(3463,'Guy','Paul William','Robert E. Greenwood','M.S.','1970','Strategic Aspects of a Game with Odd Number of Coins',NULL,NULL,NULL),
(3462,'Gregory','Mary Sue','Roger Osborn','M.S.','1970','Concerning Proofs of Fermat\'s Auler\'s and Wilson\'s Theorems',NULL,NULL,NULL),
(3461,'Friesen','David H.','Osborn','M.S.','1970','Are Investments of Distribution of Primitive Roots and Quadratic Residue fo Odd Prime Moduli',NULL,NULL,NULL),
(3460,'Driscoll','William D.','R. E. Greenwood','M.S.','1970','Probabilities in Bridge',NULL,NULL,NULL),
(3459,'Castro','Jerry Lynn','W. T. Guy','M.S.','1970','',NULL,NULL,NULL),
(3458,'Smith','Dan Elliott','Guy','M.S.','1970','',NULL,NULL,NULL),
(3457,'Martin','Quentin Ware','Whiteman','M.S.','1970','',NULL,NULL,NULL),
(3456,'Jacob','Roy Thomas, Jr.','Wall','M.S.','1970','',NULL,NULL,NULL),
(3455,'Friesen','David Henry','Osborn','M.S.','1970','',NULL,NULL,NULL),
(3454,'Fisher','Joe III','Wall','M.S.','1970','',NULL,NULL,NULL),
(3453,'Finegeld','Joel','Wall','M.S.','1970','',NULL,NULL,NULL),
(3452,'Eifler','Clayton Wentworth','Dollard','M.S.','1970','',NULL,NULL,NULL),
(3451,'DAsto','Jerry Lynn','Guy','M.S.','1970','',NULL,NULL,NULL),
(3450,'Chen','Yu-Ming','Showalter','M.S.','1970','',NULL,NULL,NULL),
(3449,'Brauner','Lonnie, Jr.','Showalter','M.S.','1970','',NULL,NULL,NULL),
(3448,'Brasch','Randolph','Schumaker','M.S.','1970','',NULL,NULL,NULL),
(3447,'Blackwell','Suzanne','Osborn','M.S.','1970','',NULL,NULL,NULL),
(3446,'Thomason','John M.','R. T. Gregory','M.S.','1969','Stabilizing Averages for Multistep Methods of Solving Ordinary Differential Equations',NULL,NULL,NULL),
(3445,'Smallwood','John L.C544','R. T. Gregory','M.S.','1969','A Comparison of Five Numerical Methods for Solving Polynomial Equations with Real Coefficients',NULL,NULL,NULL),
(3444,'Karney','David L.','R. T. Gregory','M.S.','1969','A Collection of Matrices for Testing Computational Algorithms',NULL,NULL,NULL),
(3443,'Howell','Jo Ann','R. T. Gregory','M.S.','1969','Solving Systems of Linear Algebraic Equations Using Residue Arithmetic',NULL,NULL,NULL),
(3442,'Chen','Yii-Ming','Ralph E. Showalter','M.S.','1969','On Solutions of Ordinary Differential Equations',NULL,NULL,NULL),
(3441,'Cates','Kenneth N.','Robert Greenwood','M.S.','1969','Concerning Numerical Integration for Functions Involving Fractional Powers of the Variable',NULL,NULL,NULL),
(3440,'Brauner','Lonnie, Jr.','Ralph E. Showalter','M.S.','1969','Definitions of Ellipticity',NULL,NULL,NULL),
(3439,'Wilkinson','Belinda M.','David M. Young','M.S.','1969','A Polyalgorithm for Finding Roots of Polynomial Equations',NULL,NULL,NULL),
(3438,'Vinson','John R.','Walson','M.S.','1969','On the Trapezoidal Rule with Interval Numbers',NULL,NULL,NULL),
(3437,'Tormollan','Alicia C.','Robert Greenwood','M.S.','1969','A Reduced Pascal Triangle',NULL,NULL,NULL),
(3436,'Shawe','Mary Louise','Roger Osborn','M.S.','1969','Topical Outlines in the History of Mathematics',NULL,NULL,NULL),
(3435,'Sharpley','Robert Caldwell','Ted Boessenroth','M.S.','1969','',NULL,NULL,NULL),
(3434,'Reeves','Kenneth Deene','William T. Guy','M.S.','1969','',NULL,NULL,NULL),
(3433,'Price','Camille Cook','Roger C. Osborn','M.S.','1969','The Infinitude of Primes',NULL,NULL,NULL),
(3432,'McNeely','John R.','R. E. Showalter','M.S.','1969','The Space of Distributional Derivative of L2 Functions',NULL,NULL,NULL),
(3431,'Gerdes','Alvin Louis, II','H. V. Craig','M.S.','1969','',NULL,NULL,NULL),
(3430,'Cracraft','Michael James','H. S. Wall','M.S.','1969','',NULL,NULL,NULL),
(3429,'Stallings','W. T.','Roger Osborn','M.S.','1969','An Upper-Bound for the Tau-Function',NULL,NULL,NULL),
(3428,'Schulz','Jewel Ardene','Milo W. Weaver','M.S.','1969','Symmetric Correspondence Semigroups Selected Topics',NULL,NULL,NULL),
(3427,'Parker','Gary Wayne','DeWayne Nyman','M.S.','1969','',NULL,NULL,NULL),
(3426,'Humphreys','Joe Kenneth','Wall','M.S.','1969','',NULL,NULL,NULL),
(3425,'Goldman','Michael Alan','Haskell','M.S.','1969','',NULL,NULL,NULL),
(3424,'Eisenstein','Arnold Michael','William T. Guy','M.S.','1969','',NULL,NULL,NULL),
(3423,'Eidson','Harold Damon, Jr.','David Young','M.S.','1969','The Convergence of Richardson\'s Finite-Difference Analogue for the Heat Equations',NULL,NULL,NULL),
(3422,'Broussard','Lois Mary','Ted Boessenroth','M.S.','1969','',NULL,NULL,NULL),
(3421,'Sykes','Talmadge Wiley','Wall','M.S.','1969','',NULL,NULL,NULL),
(3420,'Snyder','Patricia Ann','Edmondson','M.S.','1969','',NULL,NULL,NULL),
(3419,'Reagor','Mary Evelyn Peshworth','Guy','M.S.','1969','',NULL,NULL,NULL),
(3418,'Lewis','Albert Crawford','Craig','M.S.','1969','',NULL,NULL,NULL),
(3417,'Justice','J. Vernon','Ettlinger','M.S.','1969','',NULL,NULL,NULL),
(3416,'Garland','Geoffrey Michael','Guy','M.S.','1969','',NULL,NULL,NULL),
(3415,'Fogwell','Thomas Wilson','Wall','M.S.','1969','',NULL,NULL,NULL),
(3414,'Ewell','James John, Jr.','Wall','M.S.','1969','',NULL,NULL,NULL),
(3413,'Eskut','Billie Lee','Edmondson','M.S.','1969','',NULL,NULL,NULL),
(3412,'Carter','Joseph McKenzie','Wall','M.S.','1969','',NULL,NULL,NULL),
(3411,'Carl','Carol Gene','Osborn','M.S.','1969','',NULL,NULL,NULL),
(3410,'Beidel','John Michael','Edmondson','M.S.','1969','',NULL,NULL,NULL),
(3409,'Todd','Charles Elmo','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3408,'Stiles','Frederick Arthur','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3407,'Lochbrooke','Elvin Carroll, Jr.','William T. Guy','M.S.','1968','',NULL,NULL,NULL),
(3406,'Lankford','Dallas Sylvester, IV','Boessenroth','M.S.','1968','',NULL,NULL,NULL),
(3405,'Kavanaugh','Patrick Jay','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3404,'Justice','Jay Vernon','H. J. Ettlinger','M.S.','1968','',NULL,NULL,NULL),
(3403,'Helton','Jon Craig','Wall','M.S.','1968','',NULL,NULL,NULL),
(3402,'Hansen','Lyle Howard','Milo W. Weaver','M.S.','1968','Factorization and Multiplicative Cyclic Semigroups in rings of Residue Classes o fGaussin Integers',NULL,NULL,NULL),
(3401,'Carter','Willette Elizabeth Stevenson','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3400,'Burford (Thompson)','Leslie Jeanne','Dale E. Walston','M.S.','1968','Interval Analysis and Applications',NULL,NULL,NULL),
(3399,'Buck','Dorothy Bahn','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3398,'Ulrich','Laura Cameron','','M.S.','1968','',NULL,NULL,NULL),
(3397,'Swanson','Huntington Spann','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3396,'Stevenson','Nell Elizabeth','R. L. Moore','M.S.','1968','',NULL,NULL,NULL),
(3395,'Smith','Andrew J. K.','R. T. Gregory','M.S.','1968','The Measurement of Regional Blood Flow Using Hydroden Gas as a Tracer and the Analysis of Resultant Multiple Component Negative Exponential Washout Curves',NULL,NULL,NULL),
(3394,'Schaefer','Robert William','Boessenroth','M.S.','1968','',NULL,NULL,NULL),
(3393,'Roesler','Alvin K.','Ettlinger','M.S.','1968','',NULL,NULL,NULL),
(3392,'Ray','Frank Barnett','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3391,'Pyle','Ernest Seaborn','Roger Osborn','M.S.','1968','Sequences Generated by Sieves',NULL,NULL,NULL),
(3390,'Kosaka','Dean Kent','Boessenroth','M.S.','1968','',NULL,NULL,NULL),
(3389,'Gibson','William Loane','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3388,'Baker','Patsy Louise Watson','H. S. Wall','M.S.','1968','',NULL,NULL,NULL),
(3387,'Stromberg','Carole Cecelia','Wall','M.S.','1968','',NULL,NULL,NULL),
(3386,'Stephenson','Philip Earl','Wall','M.S.','1968','',NULL,NULL,NULL),
(3385,'Roden','Ursula Elfrieda Erika Kurger','Wall','M.S.','1968','',NULL,NULL,NULL),
(3384,'Okhuysen','Gertrude Irene Curtis','Craig','M.S.','1968','',NULL,NULL,NULL),
(3383,'McIlroy','Mary Margaret Green','Durbin','M.S.','1968','',NULL,NULL,NULL),
(3382,'Lashbrooke','Elvin Carroll','Guy','M.S.','1968','',NULL,NULL,NULL),
(3381,'Langford','Dallas Sylvester, IV','Boessenroth','M.S.','1968','',NULL,NULL,NULL),
(3380,'Enfield','Morris Conrad','Bledsoe','M.S.','1968','',NULL,NULL,NULL),
(3379,'Crews','John Price','Edmondson','M.S.','1968','',NULL,NULL,NULL),
(3378,'Courtney','Ruby K. Shropshire','Kezlan','M.S.','1968','',NULL,NULL,NULL),
(3377,'Bishop','Brita L.','Greenwood','M.S.','1968','',NULL,NULL,NULL),
(3376,'Wilson','Larry Wayne','William T. Guy','M.S.','1967','',NULL,NULL,NULL),
(3375,'Williams','Warren Stewart','R. T. Gregory','M.S.','1967','The Methods Brauer and Yamamata for Finding the Spectror Radius of an Irreducible Non-Negative Matrix',NULL,NULL,NULL),
(3374,'Stromberg','Carole Cecelia','H. S. Wall','M.S.','1967','',NULL,NULL,NULL),