-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_2019.html
More file actions
1359 lines (1234 loc) · 77.7 KB
/
index_2019.html
File metadata and controls
1359 lines (1234 loc) · 77.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Maths Conference at Imperial College London">
<meta name="author" content="The Mathscon Team">
<meta property="og:title" content="mathscon.">
<meta property="og:url" content="http://mathscon.com/">
<meta property="og:image" content="http://mathscon.com/images/preview.png">
<meta property="og:description" content="Maths Conference at Imperial College London">
<meta name="theme-color" content="#171414">
<!-- Windows Phone-->
<meta name="msapplication-navbutton-color" content="#171414">
<!-- iOS Safari-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>mathscon.</title>
<!-- Bootstrap Core CSS-->
<link rel="icon" type="image/png" href="images/favicon.png">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/slideshow.min.css" rel="stylesheet">
<!-- Custom Fonts-->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Plugin CSS-->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Theme CSS-->
<link href="css/creative.min.2019.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries-->
<!-- WARNING: Respond.js doesn't work if you view the page via file://-->
<!--if lt IE 9script(src='https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js')
script(src='https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js')
-->
</head>
<body id="page-top">
<!-- <div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v3.2';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script> -->
<div class="se-pre-con"></div>
<nav class="navbar navbar-default navbar-default-i navbar-fixed-top" id="mainNav">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display-->
<div class="navbar-header"><button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"><span class="sr-only">Toggle navigation</span><i class="fa fa-bars"></i></button><a class="navbar-brand page-scroll" href="#page-top">maths<span class="text-primary">con</span>.</a></div>
<!-- Collect the nav links, forms, and other content for toggling-->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a class="page-scroll" href="aboutus_2019.html">About Us</a></li>
<!-- <li><a class="page-scroll" href=#mathscontalks>MathsCon Talks</a></li> -->
<!-- <li><a class="page-scroll" href="#event">Event</a></li>-->
<li><a class="page-scroll" href="#speaker">Speakers</a></li>
<!--<li><a class="page-scroll" href="#agenda">Agenda</a></li>-->
<li><a class="page-scroll" href="#sponsors">Sponsors</a></li>
<li><a class="page-scroll" href="#partners">Partners</a></li>
<li><a class="page-scroll" href="#signupsponsor">Sign Up</a></li>
<li><a class="page-scroll" href="#grant-application">Grant Application</a></li>
<!-- <li><a class="page-scroll" href="#tickets">Tickets</a></li> -->
<li><a class="page-scroll" href="#contact">Contact</a></li>
<li><a href="https://www.eventbrite.co.uk/e/mathscon-2019-mathematics-conference-tickets-54379234755?utm-medium=discovery&utm-campaign=social&utm-content=attendeeshare&aff=escb&utm-source=cp&utm-term=listing">tickets</a></li>
<li class="dropdown"><a class="dropdown-toggle" href="#" data-toggle="dropdown">Mathscon Editions</a>
<ul class="dropdown-menu">
<li><a href="index.html">mathscon future</a></li>
<li><a href="index_2017.html">February 2018</a></li>
<li><a href="http://www.mathscon.com/february-2017">February 2017</a></li>
</ul>
</li>
</ul>
</div>
<!-- /.navbar-collapse-->
</div>
<!-- /.container-fluid-->
</nav>
<header>
<ul class="cb-slideshow">
<li><span>Image 01</span></li>
<li><span>Image 02</span></li>
<li><span>Image 03</span></li>
<li><span>Image 04</span></li>
<li><span>Image 05</span></li>
<li><span>Image 06</span></li>
</ul>
<div class="dim"></div>
<div class="header-content">
<div class="header-content-inner">
<h1>maths<span class="text-primary">con</span>.</h1><br>
<h3 class="text-less">23<sup>rd</sup> February 2019 <span class="text-primary">|</span> Tickets now available! <a href="https://www.eventbrite.co.uk/e/mathscon-2019-mathematics-conference-tickets-54379234755?utm-medium=discovery&utm-campaign=social&utm-content=attendeeshare&aff=escb&utm-source=cp&utm-term=listing">></a></h3>
</div>
</div>
</header>
<!--include sections/about_us-->
<section id="event">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">What is Mathscon?</h2>
<hr>
<p class="text-muted">Mathscon is a series of science events, consisting of a conference and a networking social. It is directed at undergraduates, young researchers and science lovers in general. Each event aims to expose the public to a broad range of
aspects and applications that make Mathematics so beautiful.</p>
</div>
</div>
</div><br>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box"><i class="fa fa-4x fa-lightbulb-o sr-icons"></i>
<h3>Keynote Speakers</h3>
<p class="text-muted">Passionate about both Mathematics and TED Talks? You’ll find nothing cooler than our Mathscon Keynotes given by stars in their fields.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box"><i class="fa fa-4x fa-comments sr-icons"></i>
<h3>Panel Discussions</h3>
<p class="text-muted">Listen to experts’ opinions about key questions that have troubled scientist for centuries.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box"><i class="fa-4x glyphicon glyphicon-knight sr-icons"></i>
<h3>Workshops</h3>
<p class="text-muted">What better way is there to celebrate Mathematics than to have fun with some of its cool applications?</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="service-box"><i class="fa fa-4x fa-connectdevelop sr-icons"></i>
<h3>Networking</h3>
<p class="text-muted">Socialising with people with a common interest is a key to success, whether you want to go into industry or academia.</p>
</div>
</div>
</div>
</div>
</section>
<aside id="logistics" class="bg-grey">
<!-- <div class="container-fluid text-center">
<div class="col-lg-6">
<div class="col-lg-2 col-lg-offset-2"><i class="fa fa-4x fa-calendar sr-icons"></i></div>
<div class="col-lg-8">
<h2>21st November 2018</h2>
</div>
</div>
<div class="col-lg-6">
<div class="col-lg-8">
<h2><a href="https://www.facebook.com/events/2252500978156272/">University College London</a></h2>
</div>
<div class="col-lg-2"><i class="fa fa-4x fa-map-marker sr-icons"></i></div>
</div>
</div>
<div class="container-fluid text-center">
<div class="col-lg-6">
<div class="col-lg-2 col-lg-offset-2"><i class="fa fa-4x fa-calendar sr-icons"></i></div>
<div class="col-lg-8">
<h2>27th November 2018</h2>
</div>
</div>
<div class="col-lg-6">
<div class="col-lg-8">
<h2><a href="https://www.facebook.com/events/951896321675115/">Warwick University</a></h2>
</div>
<div class="col-lg-2"><i class="fa fa-4x fa-map-marker sr-icons"></i></div>
</div>
</div>
<div class="container-fluid text-center">
<div class="col-lg-6">
<div class="col-lg-2 col-lg-offset-2"><i class="fa fa-4x fa-calendar sr-icons"></i></div>
<div class="col-lg-8">
<h2>28th November 2018</h2>
</div>
</div>
<div class="col-lg-6">
<div class="col-lg-8">
<h2><a href="https://www.facebook.com/events/432732337256489/">Bath University</a></h2>
</div>
<div class="col-lg-2"><i class="fa fa-4x fa-map-marker sr-icons"></i></div>
</div>
</div> -->
<div class="container-fluid text-center">
<div class="col-lg-6">
<div class="col-lg-2 col-lg-offset-2"><i class="fa fa-4x fa-calendar sr-icons"></i></div>
<div class="col-lg-8">
<h2>23<sup>rd</sup> February 2019</h2>
</div>
</div>
<div class="col-lg-6">
<div class="col-lg-8">
<h2>University College London</h2>
</div>
<div class="col-lg-2"><i class="fa fa-4x fa-map-marker sr-icons"></i></div>
</div>
</div>
</aside>
<section id="speaker">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Speakers</h2>
<hr>
</div>
</div><br></div>
<div class="container text-center">
<h3>Keynote Speakers</h3>
</div><br>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#jennifer-rogers" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/rsz_jennifer_rogers.jpg" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Jennifer Rogers</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#alan-wilson" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/alan_wilson.jpg" alt=""></a>
<div class="speaker-caption">
<h4>Sir Alan Wilson</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#conrad-wolfram" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/conrad_wolfram.jpg" alt=""></a>
<div class="speaker-caption">
<h4>Conrad Wolfram</h4>
</div>
</div>
</div>
<div class="container text-center">
<h3>Panel: "Can we ever finish understanding Mathematics?"</h3>
</div><br>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#laura-crosilla" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/rsz_laura_crosilla.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Laura Crosilla</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#carlo-nicolai" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/rsz_carlo_nicolai.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Carlo Nicolai</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#anastasia-stone" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/rsz_anastasia_stone.jpg" alt=""></a>
<div class="speaker-caption">
<h4>Anastasia Stone</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#tim-button" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/rsz_tim_button.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Tim Button</h4>
</div>
</div>
<div class="container text-center">
<h3>Panel: "Who is the most influential Mathematician?"</h3>
</div><br>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#jeremy-gray" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/jeremy_gray.png" alt=""></a>
<div class="speaker-caption">
<h4>Professor Jeremy Gray</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#snezana-lawrence" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/snezana_lawrence.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Snezana Lawrence</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#christian-wuthrich" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/christian_wuthrich.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Christian Wuthrich</h4>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#shohreh-blank" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/shohreh_blank.png" alt=""></a>
<div class="speaker-caption">
<h4>Dr. Shohreh Blank</h4>
</div>
</div>
<div class="container text-center">
<h3>Workshop: AI Like an Expert</h3>
</div><br>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#mark-braithwaite" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/mark_braithwathe.png" alt=""></a>
<div class="speaker-caption">
<h4>Mark Braithwaite</h4>
</div>
</div>
</div>
<div class="container text-center">
<h3>Workshop: Hollywood Maths & Superhero Physics</h3>
</div><br>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#nadia-sid" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/nadia-sid.jpg" alt=""></a>
<div class="speaker-caption">
<h4>Nadia Sid</h4>
</div></div>
<div class="col-lg-3 col-xs-6 speaker-item">
<a class="speaker-link" href="#sammi-shamma" data-toggle="modal">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/speakers_2019/sammi-shamma.png" alt=""></a>
<div class="speaker-caption">
<h4>Sammi Shamma</h4>
</div>
</div>
</section>
<section class="bg-white" id="agenda">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Agenda</h2>
</div>
</div>
<hr><br>
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<table class="table">
<tbody>
<tr class="active text-center">
<td class="col-xs-3 text-center">08:45 - 09:45</td>
<td class="col-xs-6">Registration</td>
<td class="col-xs-3 text-center">North Cloisters</td>
</tr>
<tr>
<td class="text-center">09:45 - 10:00</td>
<td class="text-center">Opening Remarks</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<tr>
<td class="text-center">10:00 - 11:00</td>
<td class="text-center"><span class="text-primary"><strong>Keynote Speech</strong></span>: Conrad Wolfram</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<tr>
<td class="text-center">11:00 - 11:30</td>
<td class="text-center">Coffee Break</td>
<td class="text-center">North Cloisters</td>
</tr>
<tr class="active">
<td class="text-center">11:30 - 12:30</td>
<td class="text-center"><span class="text-primary"><strong>Keynote Speech</strong></span>: Sir Alan Wilson</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<tr>
<td class="text-center">12:30 - 13:15
<td class="text-center">Lunch</td>
<td class="text-center">North Cloisters</td>
</td>
<!--td.text-center 12:30 - 13:30-->
<!--td-->
<!-- span.text-primary-->
<!-- strong Keynote Speech-->
<!-- |: Rob Eastaway, popular mathematics author-->
<!--td.text-center SAF G16 LT-->
</tr>
<tr>
<td class="text-center">13:15 - 14:15</td>
<td class="text-center">Workshops</td>
<td class="text-center">IOE</td>
<!--td-->
<!-- strong Panel Discussion-->
<!-- |: how to make people appreciate mathematics?-->
<!--td.text-center SAF G16 LT-->
</tr>
<tr class="active">
<td class="text-center">14:15 - 15:15</td>
<td class="text-center"><span class="text-primary"><strong>Panel Discussion</strong></span>: Who is the most influential mathematician?</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<tr>
<td class="text-center">15:15 - 15:45</td>
<td class="text-center">Coffee Break</td>
<td class="text-center">North Cloisters</td>
<!--td-->
<!-- strong Workshops-->
<!-- |: Chess, Game Theory, Poker, Rubik's Cube and Career-->
<!--td.text-center SAF Rooms-->
</tr>
<tr>
<td class="text-center">15:45 - 16:45</td>
<td class="text-center"><span class="text-primary"><strong>Keynote Speech:</strong></span> Jennifer Rogers</td>
<td class="text-center">Darwin B40 LT</td>
<!--td-->
<!-- span.text-primary-->
<!-- strong Keynote Speech-->
<!-- |: Nikki Gupta, co-founder of Markit Education-->
<!--td.text-center SAF G16 LT-->
</tr>
<tr>
<td class="text-center">16:45 - 16:50</td>
<td class="text-center">Interim</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<tr>
<td class="text-center">16:50 - 17:50</td>
<td class="text-center"><span class="text-primary"><strong>Panel Discussion:</strong></span> Can we ever finish understanding mathematics?</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
<!--tr.active-->
<!-- td.text-center 16:30 - 17:00-->
<!-- td.text-center Catered Coffee Break-->
<!-- td.text-center SAF Foyer-->
<!--tr-->
<!-- td.text-center 17:00 - 17:45-->
<!-- td-->
<!-- span.text-primary-->
<!-- strong Keynote Speech-->
<!-- |: Martin Hairer, 2014 fields medalist and Regius Professor at the University of Warwick-->
<!-- td.text-center SAF G16 LT-->
<tr>
<td class="text-center">17:50 - 18:00</td>
<td class="text-center">Closing Remarks</td>
<td class="text-center">Darwin B40 LT</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-lg-10 col-lg-offset-1 text-center">
<h5><strong>Registration:</strong> North Cloisters, Wilkins Building, Gower Street, UCL, London, WC1E 6BT</h5>
<h5><strong>Conference:</strong> Darwin Lecture Theatre, Darwin Building, Gower Street, UCL, London, WC1E 6BT</h5>
<h5><strong>Workshops:</strong> Institude of Education (IOE), 20 Bedford Way, UCL, London, WC1H 0AL</h5><br>
</div>
</div>
</div>
</section>
<section class="bg-grey" id="sponsors">
<div class="container text-center">
<div class="call-to-action">
<h2>Sponsors</h2>
<hr><br></div>
</div>
<div class="container-fluid">
<div class="row">
<div class="row">
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-2 PartnerItem"> <div class="speaker-hover-content"></div><a class="speaker-item" data-toggle="modal" href="#uni-press"><img class="img-responsive" src="images/partners_2019/Resized/oup.jpg" alt=""></a><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-name"></div></div></div></a></div>
<!-- <div class="col-xs-8 col-xs-offset-0 col-md-4 col-lg-2 col-lg-offset-2 PartnerItem"><a class="portfolio-box" href="#oup"><img class="img-responsive" src="images/partners_2019/Resized/oup.jpg" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-name">Oxford University Press</div></div></div></a></div> -->
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://ima.org.uk"><img class="img-responsive" src="images/partners_2019/Resized/Institute.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-name">Institute of Mathematics and its Applications</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.maplesoft.com/"><img class="img-responsive" src="images/partners_2019/Resized/Maplesoft.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">Maplesoft</div></div></div></a></div>
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="http://www.tpp-careers.com/"><img class="img-responsive" src="images/partners_2019/tpp.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">TPP</div></div></div></a>
</div>
</div>
</div>
</section>
<section id="partners">
<div class="container text-center">
<div class="call-to-action">
<h2>Partners</h2>
<hr><br></div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-2 PartnerItem"><a class="portfolio-box" href="https://www.thesubath.com/socs/societies/maths-bums/"><img class="img-responsive" src="images/partners_2019/Resized/BUMS.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">Bath Maths Society</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://union.ic.ac.uk/rcc/chess/"><img class="img-responsive" src="images/partners_2019/Resized/Chess.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Imperial Chess Society</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://chalkdustmagazine.com"><img class="img-responsive" src="images/partners_2019/Resized/Chalkdust2.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Chalkdust Magazine</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="http://community.dur.ac.uk/MathSoc/"><img class="img-responsive" src="images/partners_2019/Resized/Durham Mathsoc.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Durham Mathsoc</div><div class="project-name"></div></div></div></a></div>
</div>
<div class="row">
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-2 PartnerItem"><a class="portfolio-box" href="https://macsoc.weebly.com/"><img class="img-responsive" src="images/partners_2019/Resized/Glasgow.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Glasgow University MacLaurin Society</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.union.ic.ac.uk/rcsu/mathsoc/"><img class="img-responsive" src="images/partners_2019/Resized/Imperial Mathsoc.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Imperial Maths Society</div></div></div></a>
<!--a.portfolio-box(href='http://cqfd.epfl.ch/')-->
<!-- img.img-responsive(src='images/partners/cqfd.png', alt='')-->
<!-- .portfolio-box-caption-->
<!-- .portfolio-box-caption-content-->
<!-- .project-category.text-faded-->
<!-- | CQFD-->
<!-- .project-name-->
<!-- | École Polytechnique Fédérale De Lausanne-->
</div>
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.kcl.ac.uk/nms/depts/mathematics/study/current/handbook/about/mathsoc.aspx"><img class="img-responsive" src="images/partners_2019/Resized/Kings Mathsoc.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">King's College London MathSoc</div></div></div></a></div>
<div
class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.su.nottingham.ac.uk/societies/society/Maths/"><img class="img-responsive" src="images/partners_2019/Resized/Nottingham.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">Nottingham MathSoc</div></div></div></a></div>
</div>
<div class="row">
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-2 PartnerItem"><a class="portfolio-box" href="https://invariants.org.uk/"><img class="img-responsive" src="images/partners_2019/Resized/Oxford.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">Oxford Invariants</div></div></div></a>
<!--a.portfolio-box(href='http://www.kcl.ac.uk/nms/depts/mathematics/about/mathsoc/index.aspx')-->
<!-- img.img-responsive(src='images/partners/kcl.png', alt='')-->
<!-- .portfolio-box-caption-->
<!-- .portfolio-box-caption-content-->
<!-- .project-category.text-faded-->
<!-- | Mathematics Society-->
<!-- .project-name-->
<!-- | King's College London-->
</div>
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-md-offset-0 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.ucl.ac.uk/maths/mathematics-society"><img class="img-responsive" src="images/partners_2019/Resized/UCL.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded"></div><div class="project-name">University College London Mathematics Society</div></div></div></a>
<!--a.portfolio-box(href='https://union.ic.ac.uk/rcc/chess/')-->
<!-- img.img-responsive(src='images/partners/imperialchessclub.png', alt='')-->
<!-- .portfolio-box-caption-->
<!-- .portfolio-box-caption-content-->
<!-- .project-category.text-faded-->
<!-- .project-name-->
<!-- | Imperial College Chess Club-->
</div>
<div class="col-xs-8 col-xs-offset-2 col-md-4 col-lg-2 col-lg-offset-0 PartnerItem"><a class="portfolio-box" href="https://www.warwicksu.com/societies/maths/"><img class="img-responsive" src="images/partners_2019/Resized/WMS.png" alt=""><div class="portfolio-box-caption"><div class="portfolio-box-caption-content"><div class="project-category text-faded">Warwick Maths Society</div></div></div></a>
<!--a.portfolio-box(href='http://chalkdustmagazine.com/')-->
<!-- img.img-responsive(src='images/partners/chalkdust.png', alt='')-->
<!-- .portfolio-box-caption-->
<!-- .portfolio-box-caption-content-->
<!-- .project-category.text-faded-->
<!-- .project-name-->
<!-- | Chalkdust-->
</div>
<!--a.portfolio-box(href='http://chalkdustmagazine.com/')-->
<!-- img.img-responsive(src='images/partners/chalkdust.png', alt='')-->
<!-- .portfolio-box-caption-->
<!-- .portfolio-box-caption-content-->
<!-- .project-category.text-faded-->
<!-- .project-name-->
<!-- | Chalkdust
</div>
-->
</div>
</section>
<!--<aside id="signupsponsor" class="bg-grey">
<div class="container-fluid text-center">
<h2>Interested in seeing what Mathscon 2019 has to offer?</h2>
<hr><br></div>
<div class="container-fluid text-center">
<div class="container-fluid">
<p>Join us for a magical, spell-binding, riveting, joyous, mesmerising, incredible, unforgettable weekend of math-filled goodness, only at mathscon.</p>
</div>
<div class="container-fluid"><a class="btn btn-primary btn-xl" href="http://eepurl.com/dfHxJT">Subscribe for updates</a></div><br>
<div class="container-fluid">
<p>Interested in sponsoring us? <a class="page-scroll" href="mailto:team@mathscon.com">Get in touch</a></p>
</div>
</div>
</aside>-->
<!--include sections/about_us-->
<section id="grant-application">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Mathscon Maplesoft Grant Application</h2>
<hr>
<p class="text-muted"> Mathscon is a unique organisation that brings people together through Maths, and creates a community of innovative, fun, and ambitious individuals. Not only is it important to us that we continue to break the stereotypes associated with maths and push the boundaries for success, we also hope to continue to engage with our delegates and support our community of maths enthusiasts.</p>
<p class="text-muted"> That's why, last year, we introduced the Mathscon Maplesoft Grant. This is a grant
available to any maths enthusiast that buys a ticket to our conference and completes the grant application form. The winner will receive £1000 from Mathscon and Maplesoft to support them in their mathematical studies.
</p>
<p class="text-muted">
We want to support
people who not only share our appreciation for maths, but actually use maths to be innovative and make a difference. How do you identify with the Mathscon Principles? Have you recently competed in a mathematical competition? Do you
contribute towards a mathematical publication regularly? We want to hear from you! Apply here by completing the following:</p>
</div>
</div>
<div style="text-align: center;" class="container-fluid"><a class="btn btn-primary btn-xl" href="https://docs.google.com/forms/d/e/1FAIpQLSfVrSSWaB8hVoR7VECQVTlrZLJog2GtFNa8dYxrBBGjwU37Zw/viewform?usp=sf_link">Apply</a></div>
</div><br>
</section>
<section id="mathscontalks">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">New: November Talks!</h2>
<hr>
<p class="text-muted">This November, Mathscon hosted talks at three of our partner Universities, Bath UCL, and Warwick. <br>
Each talk explored a wonderful application of maths and was be given by a leading academic from the university. <br>
Each talk was be an hour long, with time for a Q&A.
The talks were free for all! You can learn more by heading to the Facebook page for the events linked below.
</p>
<hr>
</div>
<div class="container speaker-list">
<div class="col-lg-3 col-xs-6 speaker-item">
<h4>UCL: November 21st, <br>15:00</h4>
<a class="speaker-link" data-toggle="modal" href="https://www.facebook.com/events/2252500978156272/">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/november_talks/karen_page.png" alt="Prof. Karen Page"></a>
<div class="speaker-caption">
<h4><a href="http://www.ucl.ac.uk/~ucackmp/">Prof. Karen Page</a><br></h4>
<h5>The Mathematics in Modelling Embryonic Development</h5>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<h4>Warwick: November 27th, <br>18:00</h4>
<a class="speaker-link" data-toggle="modal" href="https://www.facebook.com/events/951896321675115/"">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/november_talks/vicky_henderson.png" alt="Dr. Vicky Henderson"></a>
<div class="speaker-caption">
<h4><a href="https://warwick.ac.uk/fac/sci/statistics/staff/academic-research/henderson/">Dr. Vicky Henderson</a><br></h4>
<h5>Mathematics in Behavioral Economics: gambling till the bitter end</h5>
</div>
</div>
<div class="col-lg-3 col-xs-6 speaker-item">
<h4>Bath: November 28th, <br>18:00</a></h4>
<a class="speaker-link" data-toggle="modal" href="https://www.facebook.com/events/432732337256489/">
<div class="speaker-hover">
<div class="speaker-hover-content"></div>
</div><img class="img-responsive" src="images/november_talks/christopher_jennison.png" alt="Prof. Jennison"></a>
<div class="speaker-caption">
<h4><a href="https://researchportal.bath.ac.uk/en/persons/christopher-jennison">Prof. Christopher Jennison</a><br></h4>
<h5>Why random is good: The statistics of clinical trials</h5>
</div>
</div>
</div>
</div>
</div></section>
<section id="contact" class="bg-grey">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">Contact Us</h2>
</div>
</div>
<hr><br>
<div class="row">
<div class="col-lg-2 col-lg-offset-2 col-xs-6 text-center"><a href="mailto:team@mathscon.com"><i class="fa fa-envelope-o fa-3x sr-contact"></i><p>Email</p></a></div>
<div class="col-lg-2 col-xs-6 text-center"><a href="https://goo.gl/3jpV6v"><i class="fa fa-map-marker fa-3x sr-contact"></i><p>Venue</p></a></div>
<div class="col-lg-2 col-xs-6 text-center"><a href="https://www.facebook.com/themathscon/"><i class="fa fa-facebook-square fa-3x sr-contact"></i><p>Facebook</p></a></div>
<div class="col-lg-2 col-xs-6 text-center"><a href="https://www.twitter.com/themathscon"><i class="fa fa-twitter fa-3x sr-contact"></i><p>Twitter</p></a></div>
</div>
</div>
</section>
<!--
================================================
================================================
===== ======= ======
= = = = =
= = = = =
===== = = =
= = = = =
= = = = =
===== ====== ======
================================================
================================================
-->
<div class="speaker-modal modal fade" id="conrad-wolfram" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Conrad Wolfram</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/conrad_wolfram.jpg" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>Conrad Wolfram, physicist, mathematician and technologist, is Strategic Director and European Co-Founder/CEO of the Wolfram group of companies. Described as the “Computation Company” and uniquely operating at the intersection of computation, data and knowledge, the Wolfram Group is driving innovation across data science, modelling and maths through technology and solutions—including Wolfram|One and Mathematica software, the Wolfram|Alpha knowledge engine (powering knowledge answers for Apple's Siri), Enterprise Private Cloud computation hub and the Wolfram Language. </p>
<p>Conrad is widely known for his thought leadership in reforming education using modern technology. He founded computerbasedmath.org to fundamentally rethink and rebuild the mainstream maths education curriculum now computers can be assumed and transition it to a new, broader core computational thinking subject that includes coding. The project has already delivered strategic vision, curriculum and outcome design, transition plans, and training. Computationalthinking.org has been extended to tertiary education and professional training and is recognised as the leading force in re-engineering STEM education and driving 21st century skills for the AI age. </p>
<p>Conrad attended Eton College and holds degrees in Natural Sciences and Maths from University of Cambridge.</p>
<a href="http://www.conradwolfram.com/">www.conradwolfram.com</a>
<a href="www.computationalthinking.org">www.computationalthinking.org</a>
<a href="www.wolfram.com">www.wolfram.com</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="alan-wilson" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Sir Alan Wilson</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/alan_wilson.jpg" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>Sir Alan Wilson FBA, FRS is Director, Special Projects at The Alan Turing Institute. He is also Executive Chair of the Ada Lovelace Institute at the Nuffield Foundation and Chair of the Home Office Science Advisory Council.</p>
<p>His impressive resume includes his positions as Professor of Urban and Regional Systems in CASA, UCL from 2007 – 2018, Vice-Chancellor of the University of Leeds, Director-General for Higher Education in the DfES, Chair of the Arts and Humanities Research Council, Lead Expert
Group for the Government Office for Science Foresight Project on The Future of Cities and he is a Fellow of both the British Academy and the Royal Society.
</p>
<p>In his research, as a mathematician and geographer, he works on the science of cities, building computer models that have applications in both planning and commercial sectors. He is responsible for the introduction of a number of model building techniques which are now in
common use internationally.
</p>
<p>He is also the renowned author of Knowledge power (2010), The science of cities and regions (2012), his five volume (edited) Urban modelling (2012), Global dynamics and Geo-mathematical modelling (2016) and co author of Explorations in urban and regional dynamics (2015) and Collaborative approach to trade: enhancing connectivity in sea- and land-locked countries (2017).
</p>
<p>Sir Alan Wilson received a knighthood in 2001 for his services to higher education.</pSir>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="jennifer-rogers" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Dr. Jennifer Rogers</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/jennifer_rogers.jpg" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>
Dr. Jennifer Rogers completed her BSc in Mathematics and Statistics and MSc in Statistics at
Lancaster University. Following this, she moved to the University of Warwick, to complete her
PhD in Statistics. She currently holds the position of Director of Statistical Consultancy Services
at the University of Oxford.
</p>
<p>
Her research is focused on statistical methodology, with applications of statistics to health care, with
her main area of research to date being on the development and application of novel statistical methods
for the analysis of large-scale clinical trials. Her current major medical collaborations are in cardiovascular
disease. But her research has many other applications in medicine such as epilepsy and cancer, but also
in retail and engineering.
</p>
<p>
As well as her academic post, Dr. Rogers is a highly active member of the Royal Statistical Society,
currently sitting on the RSS Council and being the Society's Vice President for External Affairs and is
the President of the British Science Association Mathematical Sciences Section for 2018.
</p>
<p>
Dr. Rogers can also regularly be found giving conference presentations and talking all things
statistics in schools, theatres and pubs, as well as the odd TV and radio show appearance.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="anastasia-stone" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Anastasia Stone</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/anastasia_stone.jpg" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>
Anastasia Stone has had a diverse career, indeed. After graduating from St Petersburg State University in Mathematics and Computer Science, Anastasia went on to work in both investment banking and the Russian power sector.
</p>
<p>
However, she couldn’t stay away from Maths for too long and, in 2013, she started the London School of Mathematics and Programming. The school is aimed at 4-18 year olds and teaches Mathematics, Programming, Robotics and even Chess!
</p>
<p>
We are delighted that Anastasia will be joining us at Mathscon this year for the panel discussion ‘Can we ever finish understanding Mathematics?’
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="carlo-nicolai" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Dr. Carlo Nicolai</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/rsz_carlo_nicolai.png" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>
Dr Carlo Nicolai achieved his DPhil from the University of Oxford in 2014. He now works as a lecturer in Philosophy (Logic) at King’s College London. Before this, he was at the Munich Center for Mathematical Philosophy with a Marie Skłodowska-Curie Individual Fellowship and at Utrecht University with a VENI (NWO) grant.
</p>
<p>
His research interests include the Philosophy of Mathematics and the Philosophy of Logic and Language. Look out for his edited book, Modes of Truth. The Unified Approach to Truth, Modalities, and Paradox, (joint with Johannes Stern), being released this year.
</p>
<p>
We will be welcoming Dr Nicolai at this year’s Mathscon!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="laura-crosilla" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Dr. Laura Crosilla</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/laura_crosilla.jpg" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
<p>
Dr Laura Crosilla graduated with a masters in Philosophy from the University of Florence. After this, she went on to obtain, not one, but two PhDs from the University of Leeds – the first being in Mathematical Logic and the second in Philosophy.
</p>
<p>
Dr Crosilla now works as a teaching fellow in the University of Birmingham’s Philosophy department. Her main focuses are the philosophy of Mathematics, the philosophy of logic and Mathematical logic.
</p>
<p>
Her book, From Sets and Types to Topology and Analysis: Towards Practicable Foundations for Constructive Mathematics, “bridges the foundations and practice of constructive mathematics and focuses on the contrast between the theoretical developments.”
</p>
<p>
We look forward to welcoming Dr Crosilla at Mathscon this year!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="speaker-modal modal fade" id="mark-braithwaite" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="row">
<h2>Mark Braithwaite</h2>
</div>
<div class="row">
<div class="col-lg-4 col-lg-offset-2">
<div class="modal-body"><img class="img-responsive img-centered" src="images/speakers_2019/mark_braithwathe.png" style="width:100%;" alt=""></div>
</div>
<div class="col-lg-4">
<div class="modal-body">
Mark Braithwaite is a primary instructor of Wolfram technologies for Wolfram Research Europe and teaches frequent classes on Mathematica and programming in the Wolfram Language.
As a technical specialist with Wolfram Research since early 2017, Mark Braithwaite's areas of interest are ever-changing, as they are influenced by the latest developments in the Wolfram technology stack. His uses the Wolfram Language daily as a development tool for company and customer applications. He is the author of several Wolfram U courses and gives talks and technical demonstrations on applications of the Wolfram Language in machine learning, AI and data science.
</div>
</div>
</div>
</div>
</div>