-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1357 lines (1332 loc) · 80.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memorial of the great scientist Professor Ali Reza Ashrafi</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- lightgallery and jQuery vendor CSS/JS -->
<link rel="stylesheet" href="https://cdn.rawgit.com/sachinchoolur/lightgallery.js/master/dist/css/lightgallery.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/sachinchoolur/lightgallery.js/master/dist/js/lightgallery.js"></script>
</head>
<body>
<main>
<div class="row">
<a href="/"><img class="figure" src="ashrafi.jpg" alt="Professor Ali Reza Ashrafi"></a>
<h1>
Memorial Of The Great Scientist<br>
Professor Ali Reza Ashrafi
</h1>
</div>
<br>
<h1>Professor Ali Reza Ashrafi</h1>
<br>
<p>
Ali Reza Ashrafi (10 May 1964 – 9 January 2023) was an Iranian mathematician who worked in computational group theory and mathematical chemistry. Ashrafi was a professor at the Department of Pure Mathematics of the University of Kashan and the Vice President of the International Academy of Mathematical Chemistry.
</p>
<h2 class="title">Address</h2>
<p>
Department of Pure Mathematics
<br>
Faculty of Mathematical Science
<br>
University of Kashan
<br>
Km. 6, Ravand Boulevard
<br>
Kashan, I. R. Iran
</p>
<br>
<h2 class="title">Personal</h2>
<ul>
<li>
<b>BIRTH DATE:</b> May 10, 1964
</li>
<li>
<b>PLACE OF BIRTH:</b> Tehran, Iran
</li>
<li>
<b>NATIONALITY:</b> Iranian
</li>
<li>
<b>SEX:</b> Male
</li>
<li>
<b>MARITAL STATUS:</b> Married
</li>
<li>
<b>CHILDREN:</b> Two daughters
</li>
</ul>
<br>
<h2 class="title">Education</h2>
<ul>
<li>
<b>1996 PHD</b>
Pure Mathematics: University of Tehran, Iran
<br>
<i>THESIS TOPIC: The Irreducible Character Table of the Group Aut(PSL(5,3))</i>
</li>
<li>
<b>1991 MSC</b>
Pure Mathematics, Shahid Beheshti University, Iran
<br>
<i>PROJECT TOPIC: Monoidal Categories</i>
</li>
<li>
<b>1989 BSC</b>
Pure Mathematics, Teacher Training University of Tehran
</li>
</ul>
<h2 class="title">Awards and Honors</h2>
<ul>
<li>Vice−President of the International Academy of Mathematical Chemistry (IAMC)</li>
<li><b>2021</b>: Wiener of Sialk Medal for Science, Mayor of Kashan, I. R. Iran</li>
<li><b>2020</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2019</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2018</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2017</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2016</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2015</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2014</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2013</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2012</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2011</b>: Distinctive Researcher: Isfahan Province, I. R. Iran</li>
<li><b>2010</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2010</b>: Member of International Academy of Mathematical Chemistry (IAMC)</li>
<li><b>2010</b>: The Third Iranian Scientist in Nanotechnology in the Fifth Top 10 Festival of Iran Nanotechnology Initiative Council</li>
<li><b>2009</b>: Distinctive Researcher in Basic Sciences of the Country</li>
<li><b>2009</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2009</b>: The Second Iranian Scientist in Nanotechnology in the Fourth Top 10 Festival of Iran Nanotechnology Initiative Council</li>
<li><b>2008</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2008</b>: The Second Iranian Scientist in Nanotechnology in the Third Top 10 Festival of Iran Nanotechnology Initiative Council</li>
<li><b>2007</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2007</b>: The First Iranian Scientist in Nanotechnology in the Second Top 10 Festival of Iran Nanotechnology Initiative Council</li>
<li><b>2006</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2006</b>: The 8th Iranian Scientist in Nanotechnology in the First Top 10 Festival of Iran Nanotechnology Initiative Council</li>
<li><b>2005</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2004</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2004</b>: Distinctive Researcher: Isfahan Province, I. R. Iran</li>
<li><b>2003</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2002</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>2001</b>: Distinctive Researcher: University of Kashan, I. R. Iran</li>
<li><b>1995</b>: Top Student in PhD Class, University of Tehran, I. R. Iran</li>
</ul>
<br>
<h2 class="title">Gallery</h2>
<div class="grid" id="lightgallery">
<div class="grid-item">
<a href="images/1.jpg">
<img src="images/1.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/2.jpg">
<img src="images/2.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/3.jpg">
<img src="images/3.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/4.jpg">
<img src="images/4.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/5.jpg">
<img src="images/5.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/6.jpg">
<img src="images/6.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/7.jpg">
<img src="images/7.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/8.jpg">
<img src="images/8.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/9.jpg">
<img src="images/9.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/10.jpg">
<img src="images/10.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/11.jpg">
<img src="images/11.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/12.jpg">
<img src="images/12.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/13.jpg">
<img src="images/13.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/14.jpg">
<img src="images/14.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/15.jpg">
<img src="images/15.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/16.jpg">
<img src="images/16.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/17.jpg">
<img src="images/17.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/18.jpg">
<img src="images/18.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/19.jpg">
<img src="images/19.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/20.jpg">
<img src="images/20.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/21.jpg">
<img src="images/21.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/22.jpg">
<img src="images/22.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/23.jpg">
<img src="images/23.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/24.jpg">
<img src="images/24.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/25.jpg">
<img src="images/25.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/26.jpg">
<img src="images/26.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/27.jpg">
<img src="images/27.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/28.jpg">
<img src="images/28.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/29.jpg">
<img src="images/29.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/30.jpg">
<img src="images/30.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/31.jpg">
<img src="images/31.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/32.jpg">
<img src="images/32.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/33.jpg">
<img src="images/33.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/34.jpg">
<img src="images/34.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/35.jpg">
<img src="images/35.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/36.jpg">
<img src="images/36.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/37.jpg">
<img src="images/37.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/38.jpg">
<img src="images/38.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/39.jpg">
<img src="images/39.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/40.jpg">
<img src="images/40.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/41.jpg">
<img src="images/41.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/42.jpg">
<img src="images/42.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/43.jpg">
<img src="images/43.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/44.jpg">
<img src="images/44.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/45.jpg">
<img src="images/45.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/46.jpg">
<img src="images/46.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/47.jpg">
<img src="images/47.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/48.jpg">
<img src="images/48.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/49.jpg">
<img src="images/49.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/50.jpg">
<img src="images/50.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/51.jpg">
<img src="images/51.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/52.jpg">
<img src="images/52.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/53.jpg">
<img src="images/53.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/54.jpg">
<img src="images/54.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/55.jpg">
<img src="images/55.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/56.jpg">
<img src="images/56.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/57.jpg">
<img src="images/57.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/58.jpg">
<img src="images/58.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/59.jpg">
<img src="images/59.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/60.jpg">
<img src="images/60.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/61.jpg">
<img src="images/61.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/62.jpg">
<img src="images/62.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/63.jpg">
<img src="images/63.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/64.jpg">
<img src="images/64.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/65.jpg">
<img src="images/65.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/66.jpg">
<img src="images/66.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/67.jpg">
<img src="images/67.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/68.jpg">
<img src="images/68.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/69.jpg">
<img src="images/69.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/70.jpg">
<img src="images/70.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/71.jpg">
<img src="images/71.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/72.jpg">
<img src="images/72.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/73.jpg">
<img src="images/73.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/74.jpg">
<img src="images/74.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/75.jpg">
<img src="images/75.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/76.jpg">
<img src="images/76.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/77.jpg">
<img src="images/77.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/78.jpg">
<img src="images/78.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/79.jpg">
<img src="images/79.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/80.jpg">
<img src="images/80.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/81.jpg">
<img src="images/81.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/82.jpg">
<img src="images/82.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/83.jpg">
<img src="images/83.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/84.jpg">
<img src="images/84.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/85.jpg">
<img src="images/85.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/86.jpg">
<img src="images/86.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/87.jpg">
<img src="images/87.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/88.jpg">
<img src="images/88.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/89.jpg">
<img src="images/89.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/90.jpg">
<img src="images/90.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/91.jpg">
<img src="images/91.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/92.jpg">
<img src="images/92.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/93.jpg">
<img src="images/93.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/94.jpg">
<img src="images/94.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/95.jpg">
<img src="images/95.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/96.jpg">
<img src="images/96.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/97.jpg">
<img src="images/97.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/98.jpg">
<img src="images/98.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/99.jpg">
<img src="images/99.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/100.jpg">
<img src="images/100.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/101.jpg">
<img src="images/101.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/102.jpg">
<img src="images/102.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/103.jpg">
<img src="images/103.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/104.jpg">
<img src="images/104.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/105.jpg">
<img src="images/105.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/106.jpg">
<img src="images/106.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/107.jpg">
<img src="images/107.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/108.jpg">
<img src="images/108.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/109.jpg">
<img src="images/109.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/110.jpg">
<img src="images/110.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/111.jpg">
<img src="images/111.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/112.jpg">
<img src="images/112.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/113.jpg">
<img src="images/113.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/114.jpg">
<img src="images/114.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/115.jpg">
<img src="images/115.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/116.jpg">
<img src="images/116.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/117.jpg">
<img src="images/117.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/118.jpg">
<img src="images/118.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/119.jpg">
<img src="images/119.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/120.jpg">
<img src="images/120.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/121.jpg">
<img src="images/121.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<!-- <div class="grid-item">
<a href="images/122.jpg">
<img src="images/122.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div> -->
<div class="grid-item">
<a href="images/123.jpg">
<img src="images/123.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/124.jpg">
<img src="images/124.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/125.jpg">
<img src="images/125.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/126.jpg">
<img src="images/126.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/127.jpg">
<img src="images/127.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/128.jpg">
<img src="images/128.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
<div class="grid-item">
<a href="images/129.jpg">
<img src="images/129.jpg" alt="Professor Ali Reza Ashrafi">
</a>
</div>
</div>
<br>
<br>
<p>
If you have any images about Prof. Ashrafi and want to add these here, or you have something to share on the website, please don't wait and send us these to [email protected] email. We are waiting to receive your information and requests.
</p>
<br><br>
<h2>Major Editorial Experiences</h2>
<ul>
<li>
<b>Associate Editor (2022 – Present)</b>
<br>
Bulletin of the Iranian Mathematical Society
<br>
Springer, Singapore, IF - 0.7
</li>
<li>
<b>Editorial Board Member (2020 - Present)</b>
<br>
Discrete Mathematics Letters (Scopus)
</li>
<li>
<b>Editorial Board Member (2018 - Present)</b>
<br>
Karbala International Journal of Modern Science (Scopus)
</li>
<li>
<b>Editorial Board Member (2016 - Present)</b>
<br>
Fullerenes, Nanotubes and Carbon Nanostructures
<br>
(Taylor & Francis, UK, IF - 2.1)
</li>
<li>
<b>Editorial Board Member (2016 - Present)</b>
<br>
Italian Journal of Pure and Applied Mathematics (Scopus & WoS)
</li>
<li>
<b>Editorial Board Member (2014 - 2016)</b>
<br>
Bulletin of the Iranian Mathematical Society (Iranian Mathematical Society)
</li>
<li>
<b>Editor-in-Chief (2012 - 2013)</b>
<br>
Bulletin of the Iranian Mathematical Society (Iranian Mathematical Society)
</li>
<li>
<b>Editorial Board Member (2012 - Present)</b>
<br>
International Journal of Group Theory (University of Isfahan)
<br>
(ISC, Scopus & WoS)
</li>
<li>
<b>Editorial Board Member (2012 - Present)</b>
<br>
Transaction on Combinatorics (University of Isfahan)
<br>
(ISC, Scopus & WoS)
</li>
<li>
<b>Managing Editor (2011)</b>
<br>
Bulletin of the Iranian Mathematical Society (Iranian Mathematical Society)
</li>
<li>
<b>Editor-in-Chief (2010 - Present)</b>
<br>
Iranian Journal of Mathematical Chemistry (University of Kashan)
<br>
(ISC, Scopus & WoS)
</li>
<li>
<b>Editorial Board Member (2008 - 2012)</b>
<br>
Journal of Advanced Mathematical Studies
</li>
<li>
<b>Editorial Board Member (2005 - Present)</b>
<br>
MATCH Communications in Mathematical and in Computer Chemistry
<br>
University of Kragujevac, Serbia, IF - 2.6
</li>
<li>
<b>Editor-in-Chief (2000 - 2003)</b>
<br>
International Journal of Science and Technology of the University of Kashan
</li>
</ul>
<br>
<h2 class="title">Membership In Societies</h2>
<ul>
<li><b>1998 - present:</b> Member of the American Mathematical Society
<li><b>1991 - present:</b> Member of the Iranian Mathematical Society
</ul>
<br>
<h2 class="title">Academic Employment</h2>
<ul>
<li><b>2014 - 2020:</b> Vice-Dean in Research, Faculty of Mathematical Sciences, University of Kashan, Kashan, I. R. Iran.
<li><b>2011 - 2015:</b> Head of the Department of Nanocomputing, Institute for Nanoscience and Nanotechnology, University of Kashan, Kashan, I. R. Iran.
<li><b>2008 - 2009:</b> Head of the Department of Mathematics, University of Kashan, Kashan, I. R. Iran.
<li><b>2005 - present:</b> Professor of Mathematics, Department of Mathematics, University of Kashan, Kashan, I. R. Iran.
<li><b>2001 - 2005:</b> Associate Professor of Mathematics, Department of Mathematics, University of Kashan, Kashan, I. R. Iran.
<li><b>2000 - 2001:</b> Dean of the Faculty of Science, University of Kashan, Kashan, I. R. Iran.
<li><b>1999:</b> Vice Dean of the Faculty of Science, University of Kashan, Kashan, I. R. Iran.
<li><b>1996 - 2000:</b> Assistant Professor of Mathematics, Department of Mathematics, University of Kashan, Kashan, I. R. Iran.
</ul>
<br>
<h2 class="title">Subject Taught</h2>
<ul>
<li><b>Undergraduate Level:</b> Foundation of Mathematics, History of Mathematics, Philosophy of Mathematics, Number Theory, Foundation of Algebra, Algebra I, Algebra II, Linear Algebra, Graph Theory, Combinatorial Mathematics, Ordinary Differential Equation, Calculus I, Calculus II, Calculus III.</li>
<li><b>Postgraduate Level:</b> Category Theory, Lattice Theory, Finite Group Theory, Character Theory of Finite Groups, Advanced Algebra, Advanced Linear Algebra, Linear Groups, Permutation Groups, Lie Algebras, Computational Group Theory, Applications of Group Theory in Physics, Graph Theory, Algebraic Graph Theory, Distance in Graphs, Cage Graphs, Combinatorics.</li>
</ul>
<br>
<h2 class="title">Present Research Works</h2>
<p>
Finite Groups, Loop Theory, Subgroup Lattices, Partition Theory, Character Theory of Finite Groups, Mathematical Chemistry, Mathematical Physics, Mathematical Biology, Mathematical Art, Theory of Hyperstructures.
</p>
<br>
<h2 class="title">Conference Organizers</h2>
<ul>
<li><b>Member of Scientific Committees</b>: Annual Iranian Mathematics Conference (AIMC 53), September 5 – September 8, 2022, University of Science & Technology of Mazandaran and Iranian Mathematical Society, I. R. Iran.</li>
<li><b>Member of Scientific Committees</b>: Annual Iranian Mathematics Conference (AIMC 52), August 30 – September 2, 2021, Shahid Bahonar University of Kerman and Iranian Mathematical Society, I. R. Iran.</li>
<li><b>Chair of the Academic Committee</b>: Annual Iranian Mathematics Conference (AIMC 51), February 15−20, 2021, University of Kashan and Iranian Mathematical Society, I. R. Iran.</li>
<li><b>Chair of the Academic Committee</b>: The third conference on Computational Group Theory, Computational Number Theory and Applications (CACNA 2018), December 12-14, 2018, University of Kashan, I. R. Iran.</li>
<li><b>Chair of the Academic Committee</b>: 9th Iranian Group Theory Conference (IGTC 2017), February 1−3, 2017, University of Kashan, I. R. Iran.</li>
<li><b>Chair of the Academic Committee</b>: The second conference on Computational Group Theory, Computational Number Theory and Applications (CACNA 2015), October 13-15, 2015, University of Kashan, I. R. Iran.</li>
<li><b>Member of Scientific Committees</b>: Annual Iranian Mathematics Conference (AIMC 46), August 25 – 28, 2015, Yazd University and Iranian Mathematical Society, I. R. Iran.</li>
<li><b>Chair of the Academic Committee</b>: The first conference on Computational Group Theory, Computational Number Theory and Applications (CACNA 2014), December 17-19, 2014, University of Kashan, I. R. Iran.</li>
<li><b>Chair of the Conference</b>: Iran-Belarus International Conference on Modern Applications of Nanotechnology, June 27-29, 2012, National Academy of Sciences of Belarus, Minsk, Belarus.</li>
<li><b>Chair of the Academic Committee</b>: 5th Conference on Algebraic Combinatorics and Graph Theory, July 3-4, 2012 University of Kashan, I. R. Iran.</li>
<li><b>Member of Scientific Committees</b>: The 26th International Course & Conference on the Interfaces among Mathematics, Chemistry & Computer Sciences, June 07-12, 2011, Dubrovnik, Croatia.</li>
<li><b>Member of Scientific Committees</b>: The 25th International Course & Conference on the Interfaces among Mathematics, Chemistry & Computer Sciences, June 07-12, 2010, Dubrovnik, Croatia.</li>
<li><b>Member of Scientific Committees</b>: 3rd International Congress on Nanoscience and Nanotechnology, ICNN 2010, November 9-11, 2010, Shiraz, Iran.</li>
<li><b>Member of Academic & Organizing Committees</b>: The Third Conference and Workshop on Mathematical Chemistry, Tarbiat Modares University, Tehran, February, 2010.</li>
<li><b>Chair of the Academic Committee</b>: The Second Conference And Workshop on Mathematical Chemistry, University of Kashan, April 24-16, 2009.</li>
<li><b>Member of Academic & Organizing Committees</b>: The First Conference and Workshop on Mathematical Chemistry, Tarbiat Modares University, Tehran, January 29-31, 2008.</li>
<li><b>Member of Scientific Committees</b>: 16th Algebra Seminar, IASBS, Zanjan, 2004.</li>
<li><b>Chair of the Academic Committee</b>: International Congress on Ghiyath Al-Din Jamshid Kashani, University of Kashan, November 9-11, 2000.</li>
</ul>
<br>
<h2 class="title">Invited Speaker Of National Or International Meetings</h2>
<ul>
<li>6th Biennial International Group Theory Conference (6Bigtc-2021), 4−6 March 2021, Vellore Institute Of Technology, Vellore, Tamil Nadu, India</li>
<li>11th Iranian Group Theory Conference, Yazd University, 30, 31 January 2019, Yazd, I. R. Iran</li>
<li>International Conference On Recent Achievements In Mathematical Science, Yazd University, 14−18 January 2019, Yazd, I. R. Iran</li>
<li>10th Graph Theory And Algebraic Conference (Gtacc10), Yazd University, 17, 18 January 2018, Yazd, I. R. Iran</li>
<li>48th Annual Iranian Mathematics Conference, Bu−Ali Sina University, August 22−25, 2017, Hamedan, I. R. Iran</li>
<li>45th Annual Iranian Mathematics Conference, Semnan University, August 26−29, 2014, Semnan, I. R. Iran</li>
<li>35th Annual Iranian Mathematics Conference, Shahid Chamran University, January 26−29, 2005, Ahvaz, I. R. Iran</li>
<li>One Day Conference In Algebra, Istanbul Bilgi University, Mathematics Seminar, May 17, 2004., Istanbul, Turkey</li>
<li>9th National Algebra Seminar, Mazandaran University & Sharif University Of Technology, 18-19 November, 1997, Babolsar, I. R. Iran</li>
</ul>
<br>
<h2 class="title">Students</h2>
<p>
<ul>
<li><i>??????????</i>, <b>Prof. Modjtaba, Ghorbani</b> (??????????)</li>
<li><i>??????????</i>, <b>Gholam Hossein, Fath-Tabar</b> (??????????)</li>
<li><i>8413220002</i>, <b>Farzaneh, Gholaminejad</b> (Mathematics and Algebra / Master)</li>
<li><i>8413220003</i>, <b>Mehsa, Mirzargar</b> (Mathematics and Algebra / Master)</li>
<li><i>8413220004</i>, <b>Masoumeh, Yazdani Moghadam</b> (Mathematics and Algebra / Master)</li>
<li><i>8513220001</i>, <b>Kamal, Amini Valashani</b> (Mathematics and Algebra / Master)</li>
<li><i>8513220207</i>, <b>Masoumeh, Qajavand</b> (Mathematics and Algebra / Master)</li>
<li><i>8713220004</i>, <b>Hossein, Shabani Ghazaani</b> (Mathematics and Algebra / Master)</li>
<li><i>8713220007</i>, <b>Farzaneh Ketabi</b> (Mathematics and Algebra / Master)</li>
<li><i>8811520005</i>, <b>Aaliya, Zolfi</b> (Mathematics and Algebra / Master)</li>
<li><i>8811526010</i>, <b>Ashraf Al Sadat, Motaghi Qomsari</b> (Mathematics and Algebra / Master)</li>
<li><i>8811526011</i>, <b>Zeinab Mehranian</b> (Mathematics and Algebra / Master)</li>
<li><i>8911520001</i>, <b>Fatemeh, Taghvai Arani</b> (Mathematics and Algebra / Master)</li>
<li><i>8911520002</i>, <b>Samira, Jaafari</b> (Mathematics and Algebra / Master)</li>
<li><i>8911520008</i>, <b>Fatemeh, Koorepazan-Moftakhar</b> (Mathematics and Algebra / Master)</li>
<li><i>8911520203</i>, <b>Mardjan, Hakimi-Nezhaad</b> (Mathematics and Algebra / Master)</li>
<li><i>8911810196</i>, <b>Ghazaani Hossein, Shabani</b> (Mathematics and Algebra / PhD)</li>
<li><i>9011520006</i>, <b>Zahra, Shiri Barezaki</b> (Mathematics and Algebra / Master)</li>
<li><i>9011520010</i>, <b>Nasrin, Malek Mohammadi Faradenbeh</b> (Mathematics and Algebra / Master)</li>
<li><i>9011810002</i>, <b>Elaha Sadat, Haqi</b> (Mathematics and Algebra / PhD)</li>
<li><i>9011810198</i>, <b>Farzaneh, Gholaminejad</b> (Mathematics and Algebra / PhD)</li>
<li><i>9011810199</i>, <b>Khadijah, Fathalikhani</b> (Mathematics and Algebra / PhD)</li>
<li><i>9111526015</i>, <b>Narges, Akbari</b> (Mathematics and Algebra / Master)</li>
<li><i>9111526016</i>, <b>Masoumeh, Yousefi</b> (Mathematics and Algebra / Master)</li>
<li><i>9111810003</i>, <b>Maryam, Jalali Rad</b> (Mathematics and Algebra / PhD)</li>
<li><i>9111810005</i>, <b>Bijan, Solimani</b> (Mathematics and Algebra / PhD)</li>
<li><i>9111816007</i>, <b>Aaliya, Zolfi</b> (Mathematics and Algebra / PhD)</li>
<li><i>9211520011</i>, <b>Vahid, Rahmani Beldaji</b> (Mathematics and Algebra / Master)</li>
<li><i>9211520014</i>, <b>Tahereh, Nasiri</b> (Mathematics and Algebra / Master)</li>
<li><i>9211520211</i>, <b>Marzieh, Mohammedzadeh</b> (Mathematics and Algebra / Master)</li>
<li><i>9211840005</i>, <b>Fatemeh, Koorepazan-Moftakhar</b> (Pure Mathematics and Algebra, and Groups / PhD)</li>
<li><i>9311550005</i>, <b>Qadawi, Rehane</b> (Pure Mathematics and Algebra, Groups, Graphs, and Codes / Master)</li>
<li><i>9311810004</i>, <b>Nasrin, Malek Mohammadi Faradenbeh</b> (Mathematics and Algebra / PhD)</li>
<li><i>9311810201</i>, <b>Mohammad Ali, Salhshur</b> (Mathematics and Algebra / PhD)</li>
<li><i>9411550006</i>, <b>Tahereh, Hoshmand</b> (Pure Mathematics and Algebra, Groups, Graphs, and Codes / Master)</li>
<li><i>9411810002</i>, <b>Mehdi, Torktaz</b> (Mathematics and Algebra / PhD)</li>
<li><i>9411810202</i>, <b>Soheila, Mahdavi Zafarkandi</b> (Mathematics and Algebra / PhD)</li>
<li><i>9411839199</i>, <b>Haider, Shelash</b> (Pure Mathematics and Algebra / PhD)</li>
<li><i>9511589001</i>, <b>Hassan, Shante</b> (Applied Mathematics / Master)</li>
<li><i>9511830004</i>, <b>Somia, Madani</b> (Pure Mathematics and Algebra / PhD)</li>
<li><i>9611810007</i>, <b>Ali, Ghalavand</b> (Mathematics and Algebra / PhD)</li>
<li><i>9611810201</i>, <b>Hassan, Khodashanas</b> (Mathematics and Algebra / PhD)</li>
<li><i>9711810004</i>, <b>Shima, Rezaee</b> (Mathematics and Algebra / PhD)</li>
<li><i>9811810003</i>, <b>Vahid, Rahmani Beldaji</b> (Mathematics and Algebra / PhD)</li>
<li><i>9811810006</i>, <b>Zahra Abbasi</b> (Mathematics and Algebra / PhD)</li>
<li><i>9911830006</i>, <b>Neda, Moradi</b> (Pure Mathematics and Algebra / PhD)</li>
<li><i>40011810001</i>, <b>Hassan, Khani Mohammad</b> (Mathematics and Algebra / PhD)</li>
<li><i>40011810008</i>, <b>Seyyed Kotsar, Yousef Haweik</b> (Mathematics and Algebra / PhD)</li>
<li><i>40111810004</i>, <b>Seyed Mohammad Ali, Hosseini</b> (Mathematics and Algebra / PhD)</li>
<li><i>40111810005</i>, <b>Zahra, Solimani Joshghan</b> (Mathematics and Algebra / PhD)</li>
<li><i>9711170225</i>, <b>Seyyed Ali, Mohammadiyeh</b> (Mathematics / Bachelor)</li>
</ul>
<br>
<h2 class="title">Journal Publications PUBLICATIONS</h2>
<p>
<a href="papers-mathematics.html">Papers Published in Mathematics Journals</a><br>
<a href="papers-nanoscitech.html">Papers Published in NanoSciTech Journals</a><br>
<a href="papers-material.html">Papers Published in Material Science Journals</a><br>