    <script type = "text/javascript">
    //when DOM is loaded add map data
    document.addEventListener('DOMContentLoaded', function(){
      //init school map
      if (schoolmap == undefined && schoolmap == null) {
        var schoolmap = L.map('mapid', { preferCanvas: true} ).setView([53.328515, -7.564583], 7);
      }else{
        return;
      }

      // The mapbox API changed.
      //
      // https://api.tiles.mapbox.com/v4/mapbox.streets/7/60/41.png?access_token=pk.eyJ1IjoiZGF2ZWhlYXJuZSIsImEiOiJjanp3aHF6NWYwMGxnM3Buc3VjODk0d2RrIn0.ZKMaeOybKh6Qx-vaRDuNyg
      //
      // Changed to
      //
      // https://api.mapbox.com/styles/v1/mapbox/streets-v11/tiles/7/60/41?access_token=pk.eyJ1IjoiZGF2ZWhlYXJuZSIsImEiOiJjanp3aHF6NWYwMGxnM3Buc3VjODk0d2RrIn0.ZKMaeOybKh6Qx-vaRDuNyg
      //

      //add street map tiles from mapbox
      /*
      L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={accessToken}', {
      	attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
      	maxZoom: 18,
      	id: 'mapbox.streets', //.light for grayscale
      	accessToken: 'pk.eyJ1IjoiZGF2ZWhlYXJuZSIsImEiOiJjanp3aHF6NWYwMGxnM3Buc3VjODk0d2RrIn0.ZKMaeOybKh6Qx-vaRDuNyg'
      }).addTo(schoolmap);
       */

      L.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token={accessToken}', {
      	attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
      	maxZoom: 18,
      	id: 'mapbox/streets-v11',
      	accessToken: 'pk.eyJ1IjoiZGF2ZWhlYXJuZSIsImEiOiJjanp3aHF6NWYwMGxnM3Buc3VjODk0d2RrIn0.ZKMaeOybKh6Qx-vaRDuNyg'
      }).addTo(schoolmap);


      //create arrays for layered approach
      var primaryArray = [];
      var secondaryArray = [];
      var earlyArray = [];
      var learningArray = [];
      var adultArray = [];
      var otherArray = [];
      var clusterArray = [];

    var marker0 = L.circleMarker([53.2484,-6.6615], {color:"#525C65", title:"ST LAURENCES NATIONAL SCHOOL"}).addTo(schoolmap);marker0.bindPopup("<b>ST LAURENCES NATIONAL SCHOOL</b><br />640 pupils signed up").openPopup();otherArray.push(marker0);var marker1 = L.circleMarker([52.2988,-7.03406], {color:"#525C65", title:"RINGVILLE NATIONAL SCHOOL"}).addTo(schoolmap);marker1.bindPopup("<b>RINGVILLE NATIONAL SCHOOL</b><br />35 pupils signed up").openPopup();otherArray.push(marker1);var marker2 = L.circleMarker([51.898455613726895,-8.403062252691901], {color:"#525C65", title:"NAGLE COMMUNITY COLLEGE"}).addTo(schoolmap);marker2.bindPopup("<b>NAGLE COMMUNITY COLLEGE</b><br />490 pupils signed up").openPopup();otherArray.push(marker2);var marker3 = L.circleMarker([52.6667,-8.64462], {color:"#525C65", title:"J F K MEMORIAL SCHOOL"}).addTo(schoolmap);marker3.bindPopup("<b>J F K MEMORIAL SCHOOL</b><br />230 pupils signed up").openPopup();otherArray.push(marker3);var marker4 = L.circleMarker([54.115,-6.26305], {color:"#525C65", title:"ST MARK'S HIGH SCHOOL"}).addTo(schoolmap);marker4.bindPopup("<b>ST MARK'S HIGH SCHOOL</b><br />30 pupils signed up").openPopup();otherArray.push(marker4);var marker5 = L.circleMarker([53.3678,-6.31448], {color:"#525C65", title:"MARY, HELP OF CHRISTIANS G.N.S."}).addTo(schoolmap);marker5.bindPopup("<b>MARY, HELP OF CHRISTIANS G.N.S.</b><br />24 pupils signed up").openPopup();otherArray.push(marker5);var marker6 = L.circleMarker([53.3602,-6.1975], {color:"#525C65", title:"HOLY FAITH SECONDARY SCHOOL"}).addTo(schoolmap);marker6.bindPopup("<b>HOLY FAITH SECONDARY SCHOOL</b><br />650 pupils signed up").openPopup();otherArray.push(marker6);var marker7 = L.circleMarker([52.8679,-9.07856], {color:"#525C65", title:"KILNAMONA N S"}).addTo(schoolmap);marker7.bindPopup("<b>KILNAMONA N S</b><br />78 pupils signed up").openPopup();otherArray.push(marker7);var marker8 = L.circleMarker([54.1648,-9.07644], {color:"#525C65", title:"CORBALLA N S"}).addTo(schoolmap);marker8.bindPopup("<b>CORBALLA N S</b><br />109 pupils signed up").openPopup();otherArray.push(marker8);var marker9 = L.circleMarker([53.3168,-6.2494], {color:"#525C65", title:"GONZAGA COLLEGE"}).addTo(schoolmap);marker9.bindPopup("<b>GONZAGA COLLEGE</b><br />50 pupils signed up").openPopup();otherArray.push(marker9);var marker10 = L.circleMarker([54.0831,-6.70312], {color:"#525C65", title:"ANNALITTEN N S"}).addTo(schoolmap);marker10.bindPopup("<b>ANNALITTEN N S</b><br />34 pupils signed up").openPopup();otherArray.push(marker10);var marker11 = L.circleMarker([53.4479,-6.20108], {color:"#525C65", title:"MALAHIDE & PORTMARNOCK SECONDARY SCHOOL"}).addTo(schoolmap);marker11.bindPopup("<b>MALAHIDE & PORTMARNOCK SECONDARY SCHOOL</b><br />750 pupils signed up").openPopup();otherArray.push(marker11);var marker12 = L.circleMarker([53.31918187063667,-6.2181544277700596], {color:"#ff6961", title:"St. michael's college junior", students:"330"}).addTo(schoolmap);marker12.bindPopup("<b>St. michael's college junior</b><br />330 pupils signed up").openPopup();primaryArray.push(marker12);var marker13 = L.circleMarker([53.3892,-6.28661], {color:"#525C65", title:"BENEAVIN DE LA SALLE COLLEGE"}).addTo(schoolmap);marker13.bindPopup("<b>BENEAVIN DE LA SALLE COLLEGE</b><br />580 pupils signed up").openPopup();otherArray.push(marker13);var marker14 = L.circleMarker([52.6081,-8.62504], {color:"#525C65", title:"SCOIL AN SPIORAID NAOMH"}).addTo(schoolmap);marker14.bindPopup("<b>SCOIL AN SPIORAID NAOMH</b><br />20 pupils signed up").openPopup();otherArray.push(marker14);var marker15 = L.circleMarker([53.51996494416099,-6.090702464292483], {color:"#FFFD77", title:"St. Joseph’s Secondary School, Rushv"}).addTo(schoolmap);marker15.bindPopup("<b>St. Joseph’s Secondary School, Rushv</b><br />974 pupils signed up").openPopup();secondaryArray.push(marker15);var marker16 = L.circleMarker([52.6382,-6.23417], {color:"#ff6961", title:"RIVERCHAPEL N S", students:"270"}).addTo(schoolmap);marker16.bindPopup("<b>RIVERCHAPEL N S</b><br />270 pupils signed up").openPopup();primaryArray.push(marker16);var marker17 = L.circleMarker([52.6081,-8.62504], {color:"#525C65", title:"SCOIL AN SPIORAID NAOMH"}).addTo(schoolmap);marker17.bindPopup("<b>SCOIL AN SPIORAID NAOMH</b><br />25 pupils signed up").openPopup();otherArray.push(marker17);var marker18 = L.circleMarker([53.311,-6.28685], {color:"#525C65", title:"PRESENTATION COMMUNITY COLLEGE"}).addTo(schoolmap);marker18.bindPopup("<b>PRESENTATION COMMUNITY COLLEGE</b><br />30 pupils signed up").openPopup();otherArray.push(marker18);var marker19 = L.circleMarker([52.2904,-7.3152], {color:"#525C65", title:"PORTLAW N.S."}).addTo(schoolmap);marker19.bindPopup("<b>PORTLAW N.S.</b><br />204 pupils signed up").openPopup();otherArray.push(marker19);var marker20 = L.circleMarker([53.96190860252912,-8.296835396989902], {color:"#ff6961", title:"Abbey Primary School", students:"30"}).addTo(schoolmap);marker20.bindPopup("<b>Abbey Primary School</b><br />30 pupils signed up").openPopup();primaryArray.push(marker20);var marker21 = L.circleMarker([52.9674,-7.07942], {color:"#525C65", title:"BALLYADAMS N S"}).addTo(schoolmap);marker21.bindPopup("<b>BALLYADAMS N S</b><br />120 pupils signed up").openPopup();otherArray.push(marker21);var marker22 = L.circleMarker([52.6649,-8.60722], {color:"#525C65", title:"SCOIL PADRAIG NAOFA C"}).addTo(schoolmap);marker22.bindPopup("<b>SCOIL PADRAIG NAOFA C</b><br />200 pupils signed up").openPopup();otherArray.push(marker22);var marker23 = L.circleMarker([53.4713,-6.24623], {color:"#525C65", title:"GAELSCOIL BHRIAN BÓROIMHE"}).addTo(schoolmap);marker23.bindPopup("<b>GAELSCOIL BHRIAN BÓROIMHE</b><br />430 pupils signed up").openPopup();otherArray.push(marker23);var marker24 = L.circleMarker([52.2791,-9.86324], {color:"#525C65", title:"ST BRENDANS N S"}).addTo(schoolmap);marker24.bindPopup("<b>ST BRENDANS N S</b><br />48 pupils signed up").openPopup();otherArray.push(marker24);var marker25 = L.circleMarker([52.2657,-9.70051], {color:"#525C65", title:"PRESENTATION SECONDARY SCHOOL"}).addTo(schoolmap);marker25.bindPopup("<b>PRESENTATION SECONDARY SCHOOL</b><br />500 pupils signed up").openPopup();otherArray.push(marker25);var marker26 = L.circleMarker([53.187,-7.9827], {color:"#525C65", title:"BANAGHER COLLEGE"}).addTo(schoolmap);marker26.bindPopup("<b>BANAGHER COLLEGE</b><br />482 pupils signed up").openPopup();otherArray.push(marker26);var marker27 = L.circleMarker([54.627,-5.92723], {color:"#525C65", title:"SEAVIEW PRIMARY SCHOOL"}).addTo(schoolmap);marker27.bindPopup("<b>SEAVIEW PRIMARY SCHOOL</b><br />400 pupils signed up").openPopup();otherArray.push(marker27);var marker28 = L.circleMarker([54.9897,-7.33328], {color:"#525C65", title:"GAELSCOIL EADAIN MHOIR"}).addTo(schoolmap);marker28.bindPopup("<b>GAELSCOIL EADAIN MHOIR</b><br />150 pupils signed up").openPopup();otherArray.push(marker28);var marker29 = L.circleMarker([54.2494,-6.70758], {color:"#525C65", title:"ST FRANCIS OF ASSISI PRIMARY SCHOOL"}).addTo(schoolmap);marker29.bindPopup("<b>ST FRANCIS OF ASSISI PRIMARY SCHOOL</b><br />30 pupils signed up").openPopup();otherArray.push(marker29);var marker30 = L.circleMarker([53.2837,-6.43747], {color:"#525C65", title:"CITY WEST EDUCATE TOGETHER NATIONAL SCHOOL"}).addTo(schoolmap);marker30.bindPopup("<b>CITY WEST EDUCATE TOGETHER NATIONAL SCHOOL</b><br />380 pupils signed up").openPopup();otherArray.push(marker30);var marker31 = L.circleMarker([55.0011,-7.33803], {color:"#525C65", title:"ST JOSEPH'S BOYS' SCHOOL"}).addTo(schoolmap);marker31.bindPopup("<b>ST JOSEPH'S BOYS' SCHOOL</b><br />30 pupils signed up").openPopup();otherArray.push(marker31);var marker32 = L.circleMarker([54.8147,-7.47284], {color:"#525C65", title:"ST MARY'S PRIMARY SCHOOL"}).addTo(schoolmap);marker32.bindPopup("<b>ST MARY'S PRIMARY SCHOOL</b><br />700 pupils signed up").openPopup();otherArray.push(marker32);var marker33 = L.circleMarker([54.8866,-6.35255], {color:"#525C65", title:"CULLYBACKEY COLLEGE"}).addTo(schoolmap);marker33.bindPopup("<b>CULLYBACKEY COLLEGE</b><br />300 pupils signed up").openPopup();otherArray.push(marker33);var marker34 = L.circleMarker([54.128174798584666,-6.58435180254936], {color:"#ff6961", title:"St Patrick's Primary School", students:"220"}).addTo(schoolmap);marker34.bindPopup("<b>St Patrick's Primary School</b><br />220 pupils signed up").openPopup();primaryArray.push(marker34);var marker35 = L.circleMarker([55.1505,-7.4412], {color:"#525C65", title:"ST ORANS N S"}).addTo(schoolmap);marker35.bindPopup("<b>ST ORANS N S</b><br />240 pupils signed up").openPopup();otherArray.push(marker35);var marker36 = L.circleMarker([52.34828188862696,-7.317817211151124], {color:"#ff6961", title:"Piltown NS", students:"23"}).addTo(schoolmap);marker36.bindPopup("<b>Piltown NS</b><br />23 pupils signed up").openPopup();primaryArray.push(marker36);var marker37 = L.circleMarker([54.6119,-6.55859], {color:"#525C65", title:"ST PATRICK'S PRIMARY SCHOOL"}).addTo(schoolmap);marker37.bindPopup("<b>ST PATRICK'S PRIMARY SCHOOL</b><br />230 pupils signed up").openPopup();otherArray.push(marker37);var marker38 = L.circleMarker([54.432,-6.41856], {color:"#525C65", title:"KILLICOMAINE JUNIOR HIGH SCHOOL"}).addTo(schoolmap);marker38.bindPopup("<b>KILLICOMAINE JUNIOR HIGH SCHOOL</b><br />600 pupils signed up").openPopup();otherArray.push(marker38);var marker39 = L.circleMarker([54.3555,-6.2685], {color:"#525C65", title:"EDENDERRY PRIMARY SCHOOL"}).addTo(schoolmap);marker39.bindPopup("<b>EDENDERRY PRIMARY SCHOOL</b><br />399 pupils signed up").openPopup();otherArray.push(marker39);var marker40 = L.circleMarker([53.2528,-6.11477], {color:"#525C65", title:"HOLY CHILD SECONDARY SCHOOL"}).addTo(schoolmap);marker40.bindPopup("<b>HOLY CHILD SECONDARY SCHOOL</b><br />300 pupils signed up").openPopup();otherArray.push(marker40);var marker41 = L.circleMarker([52.9939,-6.98078], {color:"#525C65", title:"SCOIL MHICHIL NAOFA"}).addTo(schoolmap);marker41.bindPopup("<b>SCOIL MHICHIL NAOFA</b><br />500 pupils signed up").openPopup();otherArray.push(marker41);var marker42 = L.circleMarker([53.8223,-6.47021], {color:"#525C65", title:"S N CHAOIMHIN NAOFA"}).addTo(schoolmap);marker42.bindPopup("<b>S N CHAOIMHIN NAOFA</b><br />130 pupils signed up").openPopup();otherArray.push(marker42);var marker43 = L.circleMarker([52.3418,-6.79457], {color:"#525C65", title:"NEWBAWN N S"}).addTo(schoolmap);marker43.bindPopup("<b>NEWBAWN N S</b><br />25 pupils signed up").openPopup();otherArray.push(marker43);var marker44 = L.circleMarker([54.6113,-6.21777], {color:"#525C65", title:"ST JOSEPH'S PRIMARY SCHOOL"}).addTo(schoolmap);marker44.bindPopup("<b>ST JOSEPH'S PRIMARY SCHOOL</b><br />500 pupils signed up").openPopup();otherArray.push(marker44);var marker45 = L.circleMarker([54.3529,-6.64891], {color:"#525C65", title:"ARMSTRONG PRIMARY SCHOOL"}).addTo(schoolmap);marker45.bindPopup("<b>ARMSTRONG PRIMARY SCHOOL</b><br />450 pupils signed up").openPopup();otherArray.push(marker45);var marker46 = L.circleMarker([52.2538,-8.36455], {color:"#525C65", title:"S N GLEANN NA HULADH"}).addTo(schoolmap);marker46.bindPopup("<b>S N GLEANN NA HULADH</b><br />25 pupils signed up").openPopup();otherArray.push(marker46);var marker47 = L.circleMarker([53.3588,-6.38596], {color:"#525C65", title:"THE KINGS HOSPITAL"}).addTo(schoolmap);marker47.bindPopup("<b>THE KINGS HOSPITAL</b><br />300 pupils signed up").openPopup();otherArray.push(marker47);var marker48 = L.circleMarker([52.4701,-7.26228], {color:"#525C65", title:"ST BRENDANS MIXED N S"}).addTo(schoolmap);marker48.bindPopup("<b>ST BRENDANS MIXED N S</b><br />49 pupils signed up").openPopup();otherArray.push(marker48);var marker49 = L.circleMarker([52.5668,-6.74259], {color:"#525C65", title:"KILTEALY N S"}).addTo(schoolmap);marker49.bindPopup("<b>KILTEALY N S</b><br />100 pupils signed up").openPopup();otherArray.push(marker49);var marker50 = L.circleMarker([52.2472,-7.11324], {color:"#525C65", title:"S N URSULA NAOFA"}).addTo(schoolmap);marker50.bindPopup("<b>S N URSULA NAOFA</b><br />630 pupils signed up").openPopup();otherArray.push(marker50);var marker51 = L.circleMarker([52.65997977632773,-7.151375045961681], {color:"#525C65", title:"S N NAOMH COLMAIN"}).addTo(schoolmap);marker51.bindPopup("<b>S N NAOMH COLMAIN</b><br />220 pupils signed up").openPopup();otherArray.push(marker51);var marker52 = L.circleMarker([53.3843,-6.19619], {color:"#525C65", title:"SCOIL BHREANDAIN"}).addTo(schoolmap);marker52.bindPopup("<b>SCOIL BHREANDAIN</b><br />100 pupils signed up").openPopup();otherArray.push(marker52);var marker53 = L.circleMarker([51.87861494241395,-8.520633909682552], {color:"#ff6961", title:"Scoil an Spioraid Naoimh Cailíní,Bishopstown ,Cork", students:"150"}).addTo(schoolmap);marker53.bindPopup("<b>Scoil an Spioraid Naoimh Cailíní,Bishopstown ,Cork</b><br />150 pupils signed up").openPopup();primaryArray.push(marker53);var marker54 = L.circleMarker([55.0345,-6.26533], {color:"#525C65", title:"ST ANNE'S PRIMARY SCHOOL"}).addTo(schoolmap);marker54.bindPopup("<b>ST ANNE'S PRIMARY SCHOOL</b><br />90 pupils signed up").openPopup();otherArray.push(marker54);var marker55 = L.circleMarker([52.2429,-9.67553], {color:"#525C65", title:"NAOMH PADRAIG MEASC"}).addTo(schoolmap);marker55.bindPopup("<b>NAOMH PADRAIG MEASC</b><br />170 pupils signed up").openPopup();otherArray.push(marker55);var marker56 = L.circleMarker([54.1291,-6.83067], {color:"#525C65", title:"DOOHAMLET N S"}).addTo(schoolmap);marker56.bindPopup("<b>DOOHAMLET N S</b><br />120 pupils signed up").openPopup();otherArray.push(marker56);var marker57 = L.circleMarker([52.6619,-8.61644], {color:"#525C65", title:"ST JOHNS CONVENT"}).addTo(schoolmap);marker57.bindPopup("<b>ST JOHNS CONVENT</b><br />225 pupils signed up").openPopup();otherArray.push(marker57);var marker58 = L.circleMarker([53.7312,-6.32935], {color:"#525C65", title:"ASTON VILLAGE EDUCATE TOGETHER NATIONAL SCHOOL"}).addTo(schoolmap);marker58.bindPopup("<b>ASTON VILLAGE EDUCATE TOGETHER NATIONAL SCHOOL</b><br />360 pupils signed up").openPopup();otherArray.push(marker58);var marker59 = L.circleMarker([53.5465,-6.09017], {color:"#525C65", title:"SCOIL N. BREANDAN"}).addTo(schoolmap);marker59.bindPopup("<b>SCOIL N. BREANDAN</b><br />180 pupils signed up").openPopup();otherArray.push(marker59);var marker60 = L.circleMarker([53.2813,-6.2557], {color:"#525C65", title:"ST ATTRACTAS SENIOR N S"}).addTo(schoolmap);marker60.bindPopup("<b>ST ATTRACTAS SENIOR N S</b><br />371 pupils signed up").openPopup();otherArray.push(marker60);var marker61 = L.circleMarker([53.3038,-6.22918], {color:"#525C65", title:"ST KILIAN'S DEUTSCHE SCHULE"}).addTo(schoolmap);marker61.bindPopup("<b>ST KILIAN'S DEUTSCHE SCHULE</b><br />320 pupils signed up").openPopup();otherArray.push(marker61);var marker62 = L.circleMarker([55.016,-7.27927], {color:"#525C65", title:"OAKGROVE INTEGRATED COLLEGE"}).addTo(schoolmap);marker62.bindPopup("<b>OAKGROVE INTEGRATED COLLEGE</b><br />30 pupils signed up").openPopup();otherArray.push(marker62);var marker63 = L.circleMarker([54.5749,-5.92501], {color:"#525C65", title:"HOLY ROSARY PRIMARY SCHOOL"}).addTo(schoolmap);marker63.bindPopup("<b>HOLY ROSARY PRIMARY SCHOOL</b><br />350 pupils signed up").openPopup();otherArray.push(marker63);var marker64 = L.circleMarker([52.6589,-8.6223], {color:"#525C65", title:"ST MICHAELS NS"}).addTo(schoolmap);marker64.bindPopup("<b>ST MICHAELS NS</b><br />140 pupils signed up").openPopup();otherArray.push(marker64);var marker65 = L.circleMarker([52.6599,-9.21285], {color:"#525C65", title:"COOLMEEN N S"}).addTo(schoolmap);marker65.bindPopup("<b>COOLMEEN N S</b><br />19 pupils signed up").openPopup();otherArray.push(marker65);var marker66 = L.circleMarker([52.8187,-6.94368], {color:"#525C65", title:"Tyndall College Carlo"}).addTo(schoolmap);marker66.bindPopup("<b>Tyndall College Carlo</b><br />600 pupils signed up").openPopup();otherArray.push(marker66);var marker67 = L.circleMarker([53.3706,-6.48735], {color:"#525C65", title:"SAN CARLO JUNIOR NS"}).addTo(schoolmap);marker67.bindPopup("<b>SAN CARLO JUNIOR NS</b><br />22 pupils signed up").openPopup();otherArray.push(marker67);var marker68 = L.circleMarker([51.895,-8.48077], {color:"#525C65", title:"SCOIL NAOMH MHUIRE"}).addTo(schoolmap);marker68.bindPopup("<b>SCOIL NAOMH MHUIRE</b><br />300 pupils signed up").openPopup();otherArray.push(marker68);var marker69 = L.circleMarker([53.388,-6.20398], {color:"#525C65", title:"CHANEL COLLEGE"}).addTo(schoolmap);marker69.bindPopup("<b>CHANEL COLLEGE</b><br />500 pupils signed up").openPopup();otherArray.push(marker69);var marker70 = L.circleMarker([53.343,-8.68368], {color:"#525C65", title:"ST OLIVER PLUNKETTS NS"}).addTo(schoolmap);marker70.bindPopup("<b>ST OLIVER PLUNKETTS NS</b><br />200 pupils signed up").openPopup();otherArray.push(marker70);var marker71 = L.circleMarker([53.26827960683383,-8.997754113755619], {color:"#ff6961", title:"Radharc Na Mara School, Mervue, Galway", students:"365"}).addTo(schoolmap);marker71.bindPopup("<b>Radharc Na Mara School, Mervue, Galway</b><br />365 pupils signed up").openPopup();primaryArray.push(marker71);var marker72 = L.circleMarker([52.7004,-6.95979], {color:"#525C65", title:"ST MARYS N S"}).addTo(schoolmap);marker72.bindPopup("<b>ST MARYS N S</b><br />90 pupils signed up").openPopup();otherArray.push(marker72);var marker73 = L.circleMarker([51.9104,-8.79277], {color:"#525C65", title:"COACHFORD N S"}).addTo(schoolmap);marker73.bindPopup("<b>COACHFORD N S</b><br />189 pupils signed up").openPopup();otherArray.push(marker73);var marker74 = L.circleMarker([52.7444,-7.55944], {color:"#525C65", title:"COLÁISTE MHUIRE"}).addTo(schoolmap);marker74.bindPopup("<b>COLÁISTE MHUIRE</b><br />620 pupils signed up").openPopup();otherArray.push(marker74);var marker75 = L.circleMarker([55.0479,-6.3662], {color:"#525C65", title:"KNOCKAHOLLET PRIMARY SCHOOL"}).addTo(schoolmap);marker75.bindPopup("<b>KNOCKAHOLLET PRIMARY SCHOOL</b><br />54 pupils signed up").openPopup();otherArray.push(marker75);var marker76 = L.circleMarker([54.59653339698457,-5.847473136149347], {color:"#ff6961", title:"Dundonald Primary School Belfast", students:"800"}).addTo(schoolmap);marker76.bindPopup("<b>Dundonald Primary School Belfast</b><br />800 pupils signed up").openPopup();primaryArray.push(marker76);var marker77 = L.circleMarker([54.9877,-6.68929], {color:"#525C65", title:"GARVAGH PRIMARY SCHOOL"}).addTo(schoolmap);marker77.bindPopup("<b>GARVAGH PRIMARY SCHOOL</b><br />80 pupils signed up").openPopup();otherArray.push(marker77);var marker78 = L.circleMarker([54.5196,-6.06767], {color:"#525C65", title:"KILLOWEN PRIMARY SCHOOL"}).addTo(schoolmap);marker78.bindPopup("<b>KILLOWEN PRIMARY SCHOOL</b><br />426 pupils signed up").openPopup();otherArray.push(marker78);var marker79 = L.circleMarker([54.604090775091066,-5.833740234375], {color:"#ff6961", title:"Forge Integrated Primary School", students:"399"}).addTo(schoolmap);marker79.bindPopup("<b>Forge Integrated Primary School</b><br />399 pupils signed up").openPopup();primaryArray.push(marker79);var marker80 = L.circleMarker([54.88663563597248,-7.008754185018396], {color:"#ff6961", title:"St. Canices", students:"115"}).addTo(schoolmap);marker80.bindPopup("<b>St. Canices</b><br />115 pupils signed up").openPopup();primaryArray.push(marker80);var marker81 = L.circleMarker([54.7913,-7.68446], {color:"#525C65", title:"S N AN DROIM MOR"}).addTo(schoolmap);marker81.bindPopup("<b>S N AN DROIM MOR</b><br />233 pupils signed up").openPopup();otherArray.push(marker81);var marker82 = L.circleMarker([53.67846434593514,-7.997360227396712], {color:"#525C65", title:"SCOIL MHUIRE"}).addTo(schoolmap);marker82.bindPopup("<b>SCOIL MHUIRE</b><br />51 pupils signed up").openPopup();otherArray.push(marker82);var marker83 = L.circleMarker([53.4316,-6.13778], {color:"#525C65", title:"PORTMARNOCK COMMUNITY SCHOOL"}).addTo(schoolmap);marker83.bindPopup("<b>PORTMARNOCK COMMUNITY SCHOOL</b><br />1000 pupils signed up").openPopup();otherArray.push(marker83);var marker84 = L.circleMarker([52.857,-8.97862], {color:"#525C65", title:"ST CLARES SPECIAL SCH"}).addTo(schoolmap);marker84.bindPopup("<b>ST CLARES SPECIAL SCH</b><br />115 pupils signed up").openPopup();otherArray.push(marker84);var marker85 = L.circleMarker([53.9945,-8.51616], {color:"#525C65", title:"CARN N S"}).addTo(schoolmap);marker85.bindPopup("<b>CARN N S</b><br />111 pupils signed up").openPopup();otherArray.push(marker85);var marker86 = L.circleMarker([53.093,-7.90975], {color:"#525C65", title:"MERCY PRIMARY SCHOOL"}).addTo(schoolmap);marker86.bindPopup("<b>MERCY PRIMARY SCHOOL</b><br />150 pupils signed up").openPopup();otherArray.push(marker86);var marker87 = L.circleMarker([52.2523,-7.12679], {color:"#525C65", title:"PRESENTATION SECONDARY SCHOOL"}).addTo(schoolmap);marker87.bindPopup("<b>PRESENTATION SECONDARY SCHOOL</b><br />452 pupils signed up").openPopup();otherArray.push(marker87);var marker88 = L.circleMarker([54.5877,-5.91348], {color:"#525C65", title:"PARK EDUCATION RESOURCE CENTRE"}).addTo(schoolmap);marker88.bindPopup("<b>PARK EDUCATION RESOURCE CENTRE</b><br />300 pupils signed up").openPopup();otherArray.push(marker88);var marker89 = L.circleMarker([52.6434,-9.68421], {color:"#525C65", title:"MOVEEN N S"}).addTo(schoolmap);marker89.bindPopup("<b>MOVEEN N S</b><br />21 pupils signed up").openPopup();otherArray.push(marker89);var marker90 = L.circleMarker([54.2249,-9.99141], {color:"#525C65", title:"S N BEAL AN MHUIRTHEAD"}).addTo(schoolmap);marker90.bindPopup("<b>S N BEAL AN MHUIRTHEAD</b><br />60 pupils signed up").openPopup();otherArray.push(marker90);var marker91 = L.circleMarker([53.79764547973073,-9.549672380943239], {color:"#ff6961", title:"St Colmcille N.S., Westport", students:"209"}).addTo(schoolmap);marker91.bindPopup("<b>St Colmcille N.S., Westport</b><br />209 pupils signed up").openPopup();primaryArray.push(marker91);var marker92 = L.circleMarker([53.3526,-6.28071], {color:"#525C65", title:"STANHOPE ST CONVENT"}).addTo(schoolmap);marker92.bindPopup("<b>STANHOPE ST CONVENT</b><br />60 pupils signed up").openPopup();otherArray.push(marker92);var marker93 = L.circleMarker([53.2642,-6.22949], {color:"#525C65", title:"ST. MARY'S NATIONAL SCHOOL"}).addTo(schoolmap);marker93.bindPopup("<b>ST. MARY'S NATIONAL SCHOOL</b><br />250 pupils signed up").openPopup();otherArray.push(marker93);var marker94 = L.circleMarker([53.2944,-8.97914], {color:"#525C65", title:"SCOIL MHUIRE"}).addTo(schoolmap);marker94.bindPopup("<b>SCOIL MHUIRE</b><br />240 pupils signed up").openPopup();otherArray.push(marker94);var marker95 = L.circleMarker([54.7847,-6.36773], {color:"#525C65", title:"GROGGAN PRIMARY SCHOOL"}).addTo(schoolmap);marker95.bindPopup("<b>GROGGAN PRIMARY SCHOOL</b><br />130 pupils signed up").openPopup();otherArray.push(marker95);var marker96 = L.circleMarker([54.5762,-5.99187], {color:"#525C65", title:"HOLY CHILD PRIMARY SCHOOL"}).addTo(schoolmap);marker96.bindPopup("<b>HOLY CHILD PRIMARY SCHOOL</b><br />400 pupils signed up").openPopup();otherArray.push(marker96);var marker97 = L.circleMarker([53.3644,-6.23159], {color:"#525C65", title:"MARINO COLLEGE"}).addTo(schoolmap);marker97.bindPopup("<b>MARINO COLLEGE</b><br />300 pupils signed up").openPopup();otherArray.push(marker97);  //create layers based on school type
  var primary = L.layerGroup(primaryArray);
  var secondary = L.layerGroup(secondaryArray);
  var early_learning = L.layerGroup(earlyArray);
  var learning_network = L.layerGroup(learningArray);
  var adult_group = L.layerGroup(adultArray);
  var other = L.layerGroup(otherArray);

  //create clusterDefault
  // var markers = L.markerClusterGroup();
  // clusterArray = clusterArray.concat(primaryArray,secondaryArray, earlyArray, learningArray, adultArray, otherArray);
  //
  // for (var i = 0; i < clusterArray.length; i++) {
  //   var new_marker = clusterArray[i];
  //   var marker = new_marker;
  //   var title = new_marker.options.title;
  //   marker.bindPopup(title);
  //   markers.addLayer(marker);
  // }
  //schoolmap.addLayer(markers)

  //init Base Layers
//   var baseMaps = {
// 	"Clusters": marker
// };

  var schoolMaps = {
    "Primary": primary,
    "Secondary": secondary,
    "Early Learning": early_learning,
    "Learning Network": learning_network,
    "Adult Group": adult_group,
    "Other": other,
  };

  //add layers to map
  L.control.layers(schoolMaps).addTo(schoolmap);
      //close JS function
      }, false);
  </script>
  {"id":5,"date":"2015-10-08T23:07:21","date_gmt":"2015-10-08T23:07:21","guid":{"rendered":"http:\/\/www.mathsweek.ie\/2018\/?page_id=5"},"modified":"2026-08-28T09:55:27","modified_gmt":"2026-08-28T08:55:27","slug":"home-2","status":"publish","type":"page","link":"https:\/\/www.mathsweek.ie\/2026\/","title":{"rendered":"Home"},"content":{"rendered":"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1289.6px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/register\/\" target=\"_self\"><img decoding=\"async\" width=\"1501\" height=\"501\" alt=\"2026 banner\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner.webp\" class=\"img-responsive wp-image-23105\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner-200x67.webp 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner-400x134.webp 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner-600x200.webp 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner-800x267.webp 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner-1200x401.webp 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2025\/11\/2026-date-banner.webp 1501w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 1501px\" \/><\/a><\/span><\/div><div class=\"fusion-social-links fusion-social-links-1\" style=\"--awb-margin-top:0px;--awb-margin-right:0px;--awb-margin-bottom:0px;--awb-margin-left:0px;--awb-alignment:center;--awb-box-border-top:0px;--awb-box-border-right:0px;--awb-box-border-bottom:0px;--awb-box-border-left:0px;--awb-icon-colors-hover:rgba(255,141,97,0.8);--awb-box-colors-hover:rgba(255,255,255,0.8);--awb-box-border-color:var(--awb-color3);--awb-box-border-color-hover:var(--awb-color4);\"><div class=\"fusion-social-networks boxed-icons color-type-custom\"><div class=\"fusion-social-networks-wrapper\"><a class=\"fusion-social-network-icon fusion-tooltip fusion-facebook awb-icon-facebook\" style=\"color:#eda113;font-size:24px;width:24px;background-color:#ffffff;border-color:#ffffff;border-radius:4px;\" data-placement=\"top\" data-title=\"Facebook\" data-toggle=\"tooltip\" title=\"Facebook\" aria-label=\"facebook\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/www.facebook.com\/MathsWeek\/\"><\/a><a class=\"fusion-social-network-icon fusion-tooltip fusion-twitter awb-icon-twitter\" style=\"color:#eda113;font-size:24px;width:24px;background-color:#ffffff;border-color:#ffffff;border-radius:4px;\" data-placement=\"top\" data-title=\"X\" data-toggle=\"tooltip\" title=\"X\" aria-label=\"twitter\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/twitter.com\/mathsweek\"><\/a><a class=\"fusion-social-network-icon fusion-tooltip fusion-instagram awb-icon-instagram\" style=\"color:#eda113;font-size:24px;width:24px;background-color:#ffffff;border-color:#ffffff;border-radius:4px;\" data-placement=\"top\" data-title=\"Instagram\" data-toggle=\"tooltip\" title=\"Instagram\" aria-label=\"instagram\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/www.instagram.com\/mathsireland\/\"><\/a><a class=\"fusion-social-network-icon fusion-tooltip fusion-youtube awb-icon-youtube\" style=\"color:#eda113;font-size:24px;width:24px;background-color:#ffffff;border-color:#ffffff;border-radius:4px;\" data-placement=\"top\" data-title=\"YouTube\" data-toggle=\"tooltip\" title=\"YouTube\" aria-label=\"youtube\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/www.youtube.com\/channel\/UCNWgrcdn2mGzKqhXJDI_-Pg\"><\/a><a class=\"fusion-social-network-icon fusion-tooltip fusion-linkedin awb-icon-linkedin\" style=\"color:#eda113;font-size:24px;width:24px;background-color:#ffffff;border-color:#ffffff;border-radius:4px;\" data-placement=\"top\" data-title=\"LinkedIn\" data-toggle=\"tooltip\" title=\"LinkedIn\" aria-label=\"linkedin\" target=\"_blank\" rel=\"noopener noreferrer\" href=\"https:\/\/www.linkedin.com\/company\/64543512\/\"><\/a><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container has-pattern-background has-mask-background nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1289.6px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-title title fusion-title-1 fusion-title-center fusion-title-text fusion-title-size-one\" style=\"--awb-margin-top:25px;--awb-margin-top-small:0px;--awb-margin-right-small:0px;--awb-margin-bottom-small:20px;--awb-margin-left-small:0px;\"><div class=\"title-sep-container title-sep-container-left\"><div class=\"title-sep sep-single sep-solid\" style=\"border-color:#eaeaea;\"><\/div><\/div><span class=\"awb-title-spacer\"><\/span><h1 class=\"fusion-title-heading title-heading-center fusion-responsive-typography-calculated\" style=\"margin:0;--fontSize:50;line-height:1.2;\">Register your School!<\/h1><span class=\"awb-title-spacer\"><\/span><div class=\"title-sep-container title-sep-container-right\"><div class=\"title-sep sep-single sep-solid\" style=\"border-color:#eaeaea;\"><\/div><\/div><\/div><p style=\"font-size:40px; text-align:center;color: black;\">\n    There are already <span style=\"font-size:50px; color: orange;\">25761<\/span> pupils signed up.\n<\/p>\n<div class = 'ticker-container'><p id = 'school-ticker'><span>ST LAURENCES NATIONAL SCHOOL just signed up with 640 students!  |  <\/span> <span>RINGVILLE NATIONAL SCHOOL just signed up with 35 students!  |  <\/span> <span>NAGLE COMMUNITY COLLEGE just signed up with 490 students!  |  <\/span> <span>J F K MEMORIAL SCHOOL just signed up with 230 students!  |  <\/span> <span>ST MARK'S HIGH SCHOOL just signed up with 30 students!  |  <\/span> <span>MARY, HELP OF CHRISTIANS G.N.S. just signed up with 24 students!  |  <\/span> <span>HOLY FAITH SECONDARY SCHOOL just signed up with 650 students!  |  <\/span> <span>KILNAMONA N S just signed up with 78 students!  |  <\/span> <span>CORBALLA N S just signed up with 109 students!  |  <\/span> <span>GONZAGA COLLEGE just signed up with 50 students!  |  <\/span> <span>ANNALITTEN N S just signed up with 34 students!  |  <\/span> <span>MALAHIDE & PORTMARNOCK SECONDARY SCHOOL just signed up with 750 students!  |  <\/span> <span>St. michael's college junior just signed up with 330 students!  |  <\/span> <span>BENEAVIN DE LA SALLE COLLEGE just signed up with 580 students!  |  <\/span> <span>SCOIL AN SPIORAID NAOMH just signed up with 20 students!  |  <\/span> <span>St. Joseph\u2019s Secondary School, Rushv just signed up with 974 students!  |  <\/span> <span>RIVERCHAPEL N S just signed up with 270 students!  |  <\/span> <span>SCOIL AN SPIORAID NAOMH just signed up with 25 students!  |  <\/span> <span>PRESENTATION COMMUNITY COLLEGE just signed up with 30 students!  |  <\/span> <span>PORTLAW N.S. just signed up with 204 students!  |  <\/span> <span>Abbey Primary School just signed up with 30 students!  |  <\/span> <span>BALLYADAMS N S just signed up with 120 students!  |  <\/span> <span>SCOIL PADRAIG NAOFA C just signed up with 200 students!  |  <\/span> <span>GAELSCOIL BHRIAN B\u00d3ROIMHE just signed up with 430 students!  |  <\/span> <span>ST BRENDANS N S just signed up with 48 students!  |  <\/span> <span>PRESENTATION SECONDARY SCHOOL just signed up with 500 students!  |  <\/span> <span>BANAGHER COLLEGE just signed up with 482 students!  |  <\/span> <span>SEAVIEW PRIMARY SCHOOL just signed up with 400 students!  |  <\/span> <span>GAELSCOIL EADAIN MHOIR just signed up with 150 students!  |  <\/span> <span>ST FRANCIS OF ASSISI PRIMARY SCHOOL just signed up with 30 students!  |  <\/span> <span>CITY WEST EDUCATE TOGETHER NATIONAL SCHOOL just signed up with 380 students!  |  <\/span> <span>ST JOSEPH'S BOYS' SCHOOL just signed up with 30 students!  |  <\/span> <span>ST MARY'S PRIMARY SCHOOL just signed up with 700 students!  |  <\/span> <span>CULLYBACKEY COLLEGE just signed up with 300 students!  |  <\/span> <span>St Patrick's Primary School just signed up with 220 students!  |  <\/span> <span>ST ORANS N S just signed up with 240 students!  |  <\/span> <span>Piltown NS just signed up with 23 students!  |  <\/span> <span>ST PATRICK'S PRIMARY SCHOOL just signed up with 230 students!  |  <\/span> <span>KILLICOMAINE JUNIOR HIGH SCHOOL just signed up with 600 students!  |  <\/span> <span>EDENDERRY PRIMARY SCHOOL just signed up with 399 students!  |  <\/span> <span>HOLY CHILD SECONDARY SCHOOL just signed up with 300 students!  |  <\/span> <span>SCOIL MHICHIL NAOFA just signed up with 500 students!  |  <\/span> <span>S N CHAOIMHIN NAOFA just signed up with 130 students!  |  <\/span> <span>NEWBAWN N S just signed up with 25 students!  |  <\/span> <span>ST JOSEPH'S PRIMARY SCHOOL just signed up with 500 students!  |  <\/span> <span>ARMSTRONG PRIMARY SCHOOL just signed up with 450 students!  |  <\/span> <span>S N GLEANN NA HULADH just signed up with 25 students!  |  <\/span> <span>THE KINGS HOSPITAL just signed up with 300 students!  |  <\/span> <span>ST BRENDANS MIXED N S just signed up with 49 students!  |  <\/span> <span>KILTEALY N S just signed up with 100 students!  |  <\/span> <\/p><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:2.88%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:9px;border-bottom-width:9px;\"><\/div><\/div><div class=\"fusion-text fusion-text-1\"><h3 class=\"fusion-responsive-typography-calculated\" data-fontsize=\"40\" data-lineheight=\"58px\"><strong>Registration for 2026 is now open.<\/strong><\/h3>\n<h3 class=\"fusion-responsive-typography-calculated\" data-fontsize=\"40\" data-lineheight=\"58px\">Put your school on the map!<\/h3>\n<\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:9px;border-bottom-width:9px;\"><\/div><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:0px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:5.76%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/register\/\" target=\"_self\" aria-label=\"Register\"><img decoding=\"async\" width=\"200\" height=\"200\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/09\/Register-200x200.jpg\" alt class=\"img-responsive wp-image-8042\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/09\/Register-200x200.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/09\/Register.jpg 400w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 200px\" \/><\/a><\/span><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:20px;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#00bcd4;border-color:#00bcd4;border-top-width:2px;\"><\/div><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:7px;border-bottom-width:7px;\"><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1289.6px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:20px;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ff9800;border-color:#ff9800;border-top-width:2px;\"><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1289.6px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_2_3 2_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:66.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:2.88%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:2.88%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-2\"><h3><\/h3>\n<h3><\/h3>\n<h3>Maths Week Ireland<\/h3>\n<\/div><div class=\"fusion-text fusion-text-3\"><h4 class=\"fusion-responsive-typography-calculated\" style=\"--fontsize: 18; line-height: 1.5; --minfontsize: 18;\" data-fontsize=\"18\" data-lineheight=\"27px\">Maths Week Ireland 2026 will take place from the 10th October &#8211; 18th October 2026.<\/h4>\n<p>Maths Week is an all-island initiative promoting <strong>positive attitudes towards<\/strong> maths and highlighting the importance of maths in our lives. Since 2006, this annual festival is a collaborative partnership of organisations including all the universities, institutes of technology, professional bodies, visitor centres and more.<\/p>\n<p>Maths Week has grown to attract participation from as many as 520,000 people annually across the island of Ireland.<\/p>\n<p>In 2026, Maths Week Ireland is <strong>celebrating its 21st year!<\/strong><\/p>\n<\/div><div class=\"fusion-text fusion-text-4\"><blockquote>\n<p>\u201cMaths Week is an important way to help learners, of all ages, enjoy maths and to highlight the creativity of the subject.\u201d <b>Aoibhinn N\u00ed Sh\u00failleabh\u00e1in<\/b>, assistant professor at <span class=\"fusion-tooltip tooltip-shortcode\" title=\"\" data-animation=\"\" data-delay=\"0\" data-placement=\"top\" data-title=\"University College Dublin\" data-toggle=\"tooltip\" data-trigger=\"hover\" data-original-title=\"University College Dublin\">UCD<\/span> and science communicator.<\/p>\n<\/blockquote>\n<\/div><div class=\"fusion-text fusion-text-5\"><h3 class=\"fusion-responsive-typography-calculated\" data-fontsize=\"32\" data-lineheight=\"44.8px\">Maths at Work<\/h3>\n<\/div><div class=\"fusion-text fusion-text-6\"><p>Through \u2018Maths at Work\u2019 we are hoping to <b>shine a light on the wide range of careers<\/b> that use Maths on a day to day basis. Maths is everywhere and often we treat the maths we can do as common sense, and the ones we can\u2019t do as mathematics.<\/p>\n<p><b>Encourage and inspire young people by becoming a role model! <\/b>Help them to see the usefulness of Maths and recognise its impact on all careers and everyday life<\/p>\n<\/div><div style=\"text-align:center;\"><a class=\"fusion-button button-flat fusion-button-default-size button-blue fusion-button-blue button-1 fusion-button-span-yes fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/submit-your-maths-at-work-story\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">BE A LOCAL HERO #IUSEMATHS<\/span><\/a><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:4px;border-bottom-width:4px;\"><\/div><\/div><div class=\"fusion-text fusion-text-7\"><h3 class=\"fusion-responsive-typography-calculated\" data-fontsize=\"32\" data-lineheight=\"44.8px\">Maths &amp; Success<\/h3>\n<\/div><div class=\"fusion-text fusion-text-8\"><p>Maths Week has been a successful model evidenced by growing participation rates and positive outcomes\/impacts over a series of evaluations. <b>85% of teachers<\/b> felt participation in a Maths Week event improved their pupils\u2019 attitude towards maths. In the <span style=\"color: #25a9bd;\">Research Ireland <\/span>Science in Ireland report (2015) respondents showed Maths Week with <b>highest participation and third highest recognition<\/b> (after BT Young Scientist and Science Week).<\/p>\n<\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:0px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:5.76%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-text fusion-text-9\"><h5>Recent Pictures<\/h5>\n<\/div><div class=\"awb-gallery-wrapper awb-gallery-wrapper-1 button-span-no\"><div style=\"margin:-5px;--awb-bordersize:0px;\" class=\"fusion-gallery fusion-gallery-container fusion-grid-1 fusion-columns-total-4 fusion-gallery-layout-grid fusion-gallery-1\"><div style=\"padding:5px;\" class=\"fusion-grid-column fusion-gallery-column fusion-gallery-column-1 hover-type-none\"><div class=\"fusion-gallery-image\"><a href=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/7-AJ3I4263.jpg\" rel=\"noreferrer\" data-rel=\"iLightbox[gallery_image_1]\" class=\"fusion-lightbox\" target=\"_self\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/7-AJ3I4263.jpg\" width=\"600\" height=\"400\" alt=\"\" title=\"7 AJ3I4263\" aria-label=\"7 AJ3I4263\" class=\"img-responsive wp-image-17733\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/7-AJ3I4263-200x133.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/7-AJ3I4263-400x267.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/7-AJ3I4263.jpg 600w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 640px) 1240px, \" \/><\/a><\/div><\/div><div class=\"clearfix\"><\/div><div style=\"padding:5px;\" class=\"fusion-grid-column fusion-gallery-column fusion-gallery-column-1 hover-type-none\"><div class=\"fusion-gallery-image\"><a href=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20.jpeg\" rel=\"noreferrer\" data-rel=\"iLightbox[gallery_image_1]\" class=\"fusion-lightbox\" target=\"_self\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20.jpeg\" width=\"1600\" height=\"1068\" alt=\"\" title=\"Photos by John Ohle\" aria-label=\"Photos by John Ohle\" class=\"img-responsive wp-image-17672\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20-200x134.jpeg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20-400x267.jpeg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20-600x401.jpeg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20-800x534.jpeg 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20-1200x801.jpeg 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-21.18.45-20.jpeg 1600w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 640px) 1240px, \" \/><\/a><\/div><\/div><div class=\"clearfix\"><\/div><div style=\"padding:5px;\" class=\"fusion-grid-column fusion-gallery-column fusion-gallery-column-1 hover-type-none\"><div class=\"fusion-gallery-image\"><a href=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40.jpeg\" rel=\"noreferrer\" data-rel=\"iLightbox[gallery_image_1]\" class=\"fusion-lightbox\" target=\"_self\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40.jpeg\" width=\"1600\" height=\"1068\" alt=\"\" title=\"\" aria-label=\"\" class=\"img-responsive wp-image-17551\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40-200x134.jpeg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40-400x267.jpeg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40-600x401.jpeg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40-800x534.jpeg 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40-1200x801.jpeg 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.57.00-40.jpeg 1600w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 640px) 1240px, \" \/><\/a><\/div><\/div><div class=\"clearfix\"><\/div><div style=\"padding:5px;\" class=\"fusion-grid-column fusion-gallery-column fusion-gallery-column-1 hover-type-none\"><div class=\"fusion-gallery-image\"><a href=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1.jpeg\" rel=\"noreferrer\" data-rel=\"iLightbox[gallery_image_1]\" class=\"fusion-lightbox\" target=\"_self\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1.jpeg\" width=\"1600\" height=\"1068\" alt=\"\" title=\"\" aria-label=\"\" class=\"img-responsive wp-image-17481\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1-200x134.jpeg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1-400x267.jpeg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1-600x401.jpeg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1-800x534.jpeg 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1-1200x801.jpeg 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2024\/06\/WhatsApp-Image-2024-06-14-at-20.39.48-2-1.jpeg 1600w\" sizes=\"(min-width: 2200px) 100vw, (min-width: 640px) 1240px, \" \/><\/a><\/div><\/div><div class=\"clearfix\"><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:10px;border-bottom-width:10px;\"><\/div><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-9 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;margin-top:20px;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#00bcd4;border-color:#00bcd4;border-top-width:2px;\"><\/div><\/div><div ><a class=\"fusion-button button-flat fusion-button-default-size button-default fusion-button-default button-2 fusion-button-default-span fusion-button-default-type\" style=\"--awb-margin-top:20px;--button_text_transform:uppercase;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/news\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Sign Up To Our Newsletter for Regular Updates <\/span><\/a><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:80px;--awb-margin-bottom:60px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap\" style=\"max-width:1289.6px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-10 fusion_builder_column_1_6 1_6 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:16.666666666667%;--awb-margin-top-large:0px;--awb-spacing-right-large:11.52%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:11.52%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-11 fusion_builder_column_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:0px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:5.76%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-top:10px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-zoomin\"><img decoding=\"async\" width=\"400\" height=\"400\" title=\"translated resources\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/Copy-of-Maths-Week-Website-Buttons-2-1.png\" alt class=\"img-responsive wp-image-11714\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/Copy-of-Maths-Week-Website-Buttons-2-1-200x200.png 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/Copy-of-Maths-Week-Website-Buttons-2-1.png 400w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 400px\" \/><\/span><\/div><div ><a class=\"fusion-button button-flat fusion-button-default-size button-blue fusion-button-blue button-3 fusion-button-default-span fusion-button-default-type\" style=\"--awb-margin-top:20px;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/resources\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Translated Resources <\/span><\/a><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-12 fusion_builder_column_1_3 1_3 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:33.333333333333%;--awb-margin-top-large:0px;--awb-spacing-right-large:5.76%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:5.76%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-image-element\" style=\"--awb-margin-top:10px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-4 hover-type-zoomin\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/puzzles-ukrainian\/\" target=\"_self\" aria-label=\"Ukrainian\"><img decoding=\"async\" width=\"400\" height=\"400\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/19.png\" alt class=\"img-responsive wp-image-11702\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/19-200x200.png 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2022\/06\/19.png 400w\" sizes=\"(max-width: 1024px) 100vw, (max-width: 640px) 100vw, 400px\" \/><\/a><\/span><\/div><div ><a class=\"fusion-button button-flat fusion-button-default-size button-blue fusion-button-blue button-4 fusion-button-default-span fusion-button-default-type\" style=\"--awb-margin-top:20px;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/puzzles-ukrainian\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Ukrainian Resources<\/span><\/a><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-13 fusion_builder_column_1_1 1_1 fusion-flex-column\" style=\"--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:20px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-order-medium:0;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-order-small:0;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-justify-content-flex-start fusion-content-layout-column\"><div class=\"fusion-separator fusion-full-width-sep\" style=\"align-self: center;margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ff9800;border-color:#ff9800;border-top-width:2px;\"><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-6 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-equal-height-columns\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-background-color:rgba(255,152,0,0.68);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-14 fusion_builder_column_1_2 1_2 fusion-one-half fusion-column-first fusion-animated\" style=\"--awb-padding-top:20px;--awb-bg-color:rgba(255,152,0,0.68);--awb-bg-color-hover:rgba(255,152,0,0.68);--awb-bg-position:center top;--awb-bg-size:cover;--awb-margin-top:20px;width:50%;width:calc(50% - ( ( 4% ) * 0.5 ) );margin-right: 4%;\" data-animationType=\"fadeInLeft\" data-animationDuration=\"1.0\" data-animationOffset=\"top-into-view\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><div class=\"fusion-testimonials clean awb-testimonials-layout-fade awb-testimonial-content-flex-start awb-speech-bubble-show awb-testimonial-author-inline fusion-testimonials-1\" style=\"--awb-flex-align-items:stretch;--awb-backgroundcolor:rgba(147,147,147,0);--awb-testimonial-border-style:solid;--awb-testimonial-border-color:var(--awb-color3);--awb-textcolor:#ffffff;--awb-content-valign:center;--awb-initials-bg-color:var(--primary_color);--awb-initials-text-color:#ffffff;--awb-testimonial-icon-size:2em;--awb-border-top-left-radius:0px;--awb-border-top-right-radius:0px;--awb-border-bottom-left-radius:0px;--awb-border-bottom-right-radius:0px;--testimonial-border-width-top:0px;--testimonial-border-width-right:0px;--testimonial-border-width-bottom:0px;--testimonial-border-width-left:0px;\"><div class=\"reviews awb-carousel awb-swiper awb-swiper-dots-position-below\" data-touchscroll=\"touch\" data-loop=\"yes\" data-pagination=\"bullets\" data-autoplay=\"yes\" data-autoplayspeed=\"4000\" data-autoplaypause=\"no\" style=\"--awb-arrow-bgcolor:#707070;--awb-arrow-color:#fff;--awb-arrow-hover-bgcolor:#333333;--awb-arrow-hover-color:#fff;--awb-dots-align:center;--awb-arrow-position-vertical-transform:none;\" data-slide-effect=\"fade\" data-itemmargin=\"0\"><div class=\"swiper-wrapper\"><div class=\"swiper-slide review avatar-above avatar-image\"><div class=\"testimonial-thumbnail\"><img decoding=\"async\" class=\"testimonial-image\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2018\/03\/AOS.png\" width=\"190\" height=\"190\" style=\"--awb-border-radius:50%;\" \/><\/div><blockquote class=\"has-transparent-color\"><div class=\"awb-quote\"><div class=\"awb-quote-content\">\n<p>Maths Week is an important way to help learners, of all ages, enjoy maths and to highlight the creativity of the subject.<\/p>\n<\/div><\/div><\/blockquote><div class=\"author\"><span class=\"company-name\"><strong class=\"testimonial-name\">Aoibhinn N\u00ed Sh\u00failleabh\u00e1in<\/strong><span class=\"awb-testimonial-sep\">, <\/span><span class=\"testimonial-extras\"><span class=\"testimonial-company\">assistant professor, UCD and science communicator<\/span><\/span><\/span><\/div><\/div><div class=\"swiper-slide review avatar-above avatar-image\"><div class=\"testimonial-thumbnail\"><img decoding=\"async\" class=\"testimonial-image\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2018\/03\/DS.png\" width=\"190\" height=\"190\" style=\"--awb-border-radius:50%;\" \/><\/div><blockquote class=\"has-transparent-color\"><div class=\"awb-quote\"><div class=\"awb-quote-content\">\n<p>Basic maths is hugely important when it comes to success in the kitchen. There is a lot of science and maths in cooking and you can&#8217;t ignore them. Maths wouldn&#8217;t have been my favourite subject in school, but I didn&#8217;t realise how important it was at the time.<\/p>\n<\/div><\/div><\/blockquote><div class=\"author\"><span class=\"company-name\"><strong class=\"testimonial-name\">Donal Skehan<\/strong><span class=\"awb-testimonial-sep\">, <\/span><span class=\"testimonial-extras\"><span class=\"testimonial-company\">food writer &amp; TV presenter<\/span><\/span><\/span><\/div><\/div><div class=\"swiper-slide review avatar-above avatar-image\"><div class=\"testimonial-thumbnail\"><img decoding=\"async\" class=\"testimonial-image\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2018\/03\/MOC.png\" width=\"190\" height=\"190\" style=\"--awb-border-radius:50%;\" \/><\/div><blockquote class=\"has-transparent-color\"><div class=\"awb-quote\"><div class=\"awb-quote-content\">\n<p>Mathematics is essential for disciplines such as science, technology, engineering and finance. However, we should also remember that mathematics promotes the ability to think rationally, analyse and solve problems, and process data clearly and accurately.<\/p>\n<\/div><\/div><\/blockquote><div class=\"author\"><span class=\"company-name\"><strong class=\"testimonial-name\">Miriam O'Callaghan<\/strong><span class=\"awb-testimonial-sep\">, <\/span><span class=\"testimonial-extras\"><span class=\"testimonial-company\">broadcaster and journalist<\/span><\/span><\/span><\/div><\/div><\/div><div class=\"swiper-pagination testimonial-pagination\" id=\"fusion-testimonials-1\"><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-15 fusion_builder_column_1_2 1_2 fusion-one-half fusion-column-last\" style=\"--awb-padding-top:20px;--awb-padding-right:60px;--awb-padding-bottom:60px;--awb-padding-left:60px;--awb-bg-color:rgba(255,152,0,0.68);--awb-bg-color-hover:rgba(255,152,0,0.68);--awb-bg-position:center center;--awb-bg-size:cover;--awb-border-color:rgba(255,152,0,0.68);--awb-border-top:10px;--awb-border-right:0px;--awb-border-bottom:0px;--awb-border-left:0px;--awb-border-style:solid;--awb-margin-top:20px;width:50%;width:calc(50% - ( ( 4% ) * 0.5 ) );\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-text fusion-text-10\" style=\"--awb-content-alignment:center;--awb-margin-top:10px;--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Maths resources for all ages<\/span><\/h1>\n<\/div><div class=\"fusion-text fusion-text-11\"><p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Rainy days need never be a drag again! Visit the <b>Resources<\/b> section of our website where you&#8217;ll find a wealth of fun, challenging puzzles and activities for all ages.<\/span><\/p>\n<\/div><div class=\"fusion-button-wrapper fusion-aligncenter fusion-align-inline-medium\"><a class=\"fusion-button button-flat fusion-button-default-size button-custom fusion-button-default button-5 fusion-button-span-no fusion-button-span-default-medium fusion-button-default-type fusion-has-button-gradient\" style=\"--button_accent_color:#785510;--button_accent_hover_color:#785510;--button_border_hover_color:#785510;--button_gradient_top_color:#25a9bd;--button_gradient_bottom_color:#25a9bd;--button_gradient_top_color_hover:#d6ad5a;--button_gradient_bottom_color_hover:#e8cb90;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/00resources\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Resources<\/span><i class=\"fa-angle-right fas awb-button__icon awb-button__icon--default button-icon-right\" aria-hidden=\"true\"><\/i><\/a><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-7 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-equal-height-columns\" style=\"--awb-border-sizes-top:10px;--awb-border-color:#ffffff;--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:4%;--awb-margin-bottom:0%;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-16 fusion_builder_column_1_3 1_3 fusion-one-third fusion-column-first\" style=\"--awb-bg-blend:overlay;--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );margin-right: 4%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-image-element in-legacy-container\" style=\"--awb-max-width:400px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-5 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/maths-week-tv-on-demand\/\" target=\"_self\" aria-label=\"On-demand-button Maths week\"><img decoding=\"async\" width=\"1024\" height=\"290\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button-1024x290.jpg\" alt class=\"img-responsive wp-image-10379\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button-200x57.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button-400x113.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button-600x170.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button-800x227.jpg 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/10\/On-demand-button.jpg 1059w\" sizes=\"(max-width: 800px) 100vw, 400px\" \/><\/a><\/span><\/div><div class=\"fusion-text fusion-text-12\" style=\"--awb-content-alignment:center;--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><p>Check out our on demand content, available all year around.<\/p>\n<\/div><div class=\"fusion-button-wrapper fusion-align-block\"><a class=\"fusion-button button-flat fusion-button-default-size button-default fusion-button-default button-6 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/maths-week-tv-on-demand\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Watch On Demand<\/span><\/a><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-17 fusion_builder_column_1_3 1_3 fusion-one-third\" style=\"--awb-bg-blend:overlay;--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );margin-right: 4%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-image-element in-legacy-container\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-6 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/podcast-media\/\" target=\"_self\" aria-label=\"Slightly-Stranger-things-image narrow\"><img decoding=\"async\" width=\"1024\" height=\"324\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-1024x324.png\" alt class=\"img-responsive wp-image-11064\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-200x63.png 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-400x126.png 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-600x190.png 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-800x253.png 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow-1200x379.png 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Slightly-Stranger-things-image-narrow.png 1316w\" sizes=\"(max-width: 800px) 100vw, 400px\" \/><\/a><\/span><\/div><div class=\"fusion-text fusion-text-13\" style=\"--awb-content-alignment:center;--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><p><em><strong>Colm O&#8217;Regan<\/strong><\/em>, comedian, author and broadcaster, shows us <strong><em>slightly stranger things<\/em><\/strong>.<\/p>\n<\/div><div class=\"fusion-button-wrapper fusion-align-block\"><a class=\"fusion-button button-flat fusion-button-default-size button-default fusion-button-default button-7 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/podcast-media\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Podcasts &amp; Media<\/span><\/a><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-18 fusion_builder_column_1_3 1_3 fusion-one-third fusion-column-last\" style=\"--awb-bg-blend:overlay;--awb-bg-size:cover;width:33.333333333333%;width:calc(33.333333333333% - ( ( 4% + 4% ) * 0.33333333333333 ) );\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-image-element in-legacy-container\" style=\"--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><span class=\" fusion-imageframe imageframe-none imageframe-7 hover-type-none\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/play-games\/\" target=\"_self\" aria-label=\"Games &#038; Competitions (2)\"><img decoding=\"async\" width=\"1024\" height=\"290\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2-1024x290.png\" alt class=\"img-responsive wp-image-11068\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2-200x57.png 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2-400x113.png 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2-600x170.png 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2-800x227.png 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2021\/11\/Games-Competitions-2.png 1059w\" sizes=\"(max-width: 800px) 100vw, 400px\" \/><\/a><\/span><\/div><div class=\"fusion-text fusion-text-14\" style=\"--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><p>Fun maths games and competitions for the classroom and home.<\/p>\n<\/div><div class=\"fusion-button-wrapper fusion-align-block\"><a class=\"fusion-button button-flat fusion-button-default-size button-default fusion-button-default button-8 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/Games-and-competitions\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Games &amp; Competitions<\/span><\/a><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-8 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-margin-top:80px;--awb-background-color:rgba(255,152,0,0.68);--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-19 fusion_builder_column_2_3 2_3 fusion-two-third fusion-column-first\" style=\"--awb-bg-color:rgba(255,152,0,0.68);--awb-bg-color-hover:rgba(255,152,0,0.68);--awb-bg-size:cover;--awb-margin-bottom:25px;width:65.3333%; margin-right: 4%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-button-wrapper fusion-align-block\"><a class=\"fusion-button button-flat fusion-button-default-size button-blue fusion-button-blue button-9 fusion-button-default-span fusion-button-default-type\" style=\"--awb-margin-top:10px;--awb-margin-bottom:5px;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/participants-gallery\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Share your Maths Week Photos<\/span><\/a><\/div><div class=\"fusion-slider-sc fusion-flexslider-loading flexslider flexslider-hover-type-zoomin\" data-slideshow_autoplay=\"1\" data-slideshow_smooth_height=\"0\" data-slideshow_speed=\"7000\" style=\"max-width:100%;height:100%;\"><ul class=\"slides\"><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_002.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5897\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_002-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_002-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_002-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_002.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_003.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5898\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_003-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_003-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_003-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_003.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_004.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5899\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_004-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_004-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_004-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_004.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_006.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5901\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_006-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_006-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_006-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_006.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_007.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5902\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_007-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_007-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_007-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_007.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_008.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5903\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_008-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_008-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_008-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_008.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_009.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5904\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_009-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_009-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_009-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_009.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_010.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5905\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_010-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_010-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_010-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_010.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_011.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5906\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_011-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_011-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_011-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_011.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_012.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5907\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_012-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_012-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_012-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_012.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_013.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5908\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_013-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_013-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_013-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_013.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_014.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5909\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_014-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_014-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_014-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_014.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_015.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5910\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_015-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_015-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_015-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_015.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_016.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5911\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_016-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_016-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_016-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_016.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_017.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5912\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_017-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_017-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_017-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_017.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_018.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5913\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_018-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_018-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_018-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_018.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_019.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5914\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_019-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_019-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_019-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_019.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_020.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5915\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_020-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_020-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_020-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_020.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_021.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5916\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_021-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_021-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_021-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_021.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_022.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5917\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_022-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_022-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_022-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_022.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_023.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5918\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_023-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_023-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_023-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_023.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_024.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5919\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_024-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_024-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_024-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_024.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_025.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5920\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_025-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_025-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_025-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_025.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_026.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5921\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_026-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_026-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_026-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_026.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_027.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5922\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_027-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_027-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_027-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_027.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_028.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5923\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_028-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_028-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_028-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_028.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_029.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5924\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_029-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_029-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_029-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_029.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_030.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5925\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_030-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_030-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_030-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_030.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_031.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5926\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_031-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_031-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_031-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_031.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_032.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5927\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_032-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_032-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_032-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_032.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_033.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5928\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_033-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_033-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_033-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_033.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_034.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5929\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_034-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_034-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_034-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_034.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><li class=\"image\"><span class=\"fusion-image-hover-element hover-type-zoomin\"><img decoding=\"async\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_035.jpg\" width=\"723\" height=\"367\" class=\"wp-image-5930\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_035-200x102.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_035-400x203.jpg 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_035-600x305.jpg 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2019\/11\/SLIDESHOW_035.jpg 723w\" sizes=\"(max-width: 800px) 100vw, 723px\" \/><\/span><\/li><\/ul><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-20 fusion_builder_column_1_3 1_3 fusion-one-third fusion-column-last fusion-column-no-min-height\" style=\"--awb-bg-color:rgba(255,152,0,0.68);--awb-bg-color-hover:rgba(255,152,0,0.68);--awb-bg-size:cover;--awb-margin-top:5px;--awb-margin-bottom:0px;width:30.6666%;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-image-element fusion-image-align-center in-legacy-container\" style=\"text-align:center;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"imageframe-align-center\"><span class=\" fusion-imageframe imageframe-none imageframe-8 hover-type-none\" style=\"border:4px solid rgba(255,152,0,0.68);\"><a class=\"fusion-no-lightbox\" href=\"https:\/\/www.mathsweek.ie\/2026\/about\/\" target=\"_self\" aria-label=\"Maths for All\"><img decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/08\/Maths-for-All-300x300.jpg\" alt class=\"img-responsive wp-image-7851\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/08\/Maths-for-All-200x200.jpg 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2020\/08\/Maths-for-All.jpg 400w\" sizes=\"(max-width: 800px) 100vw, 300px\" \/><\/a><\/span><\/div><\/div><div class=\"fusion-text fusion-text-15\" style=\"--awb-content-alignment:center;--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><p>Maths for All is at the core of everything we do. This simple phrase encapsulates our belief that no matter what age, background or ability; maths is useful and it can also enrich your life.<\/p>\n<\/div><div class=\"fusion-button-wrapper fusion-align-block\"><a class=\"fusion-button button-flat fusion-button-default-size button-blue fusion-button-blue button-10 fusion-button-default-span fusion-button-default-type\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/about\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Read more<\/span><\/a><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-21 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"--awb-bg-size:cover;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-clearfix\"><\/div><\/div><\/div><\/div><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-9 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;\" ><div class=\"fusion-builder-row fusion-row\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-22 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"--awb-padding-right:0%;--awb-padding-left:0%;--awb-bg-blend:overlay;--awb-bg-size:cover;--awb-margin-top:80px;--awb-margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-flex-column-wrapper-legacy\"><div class=\"fusion-button-wrapper fusion-aligncenter\"><a class=\"fusion-button button-flat button-medium button-blue fusion-button-blue button-11 fusion-button-span-no fusion-button-default-type\" style=\"--button_text_transform:none;\" target=\"_self\" href=\"https:\/\/www.mathsweek.ie\/2026\/news\/\"><span class=\"fusion-button-text awb-button__text awb-button__text--default\">Sign up to our newsletter<\/span><\/a><\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:10px;border-bottom-width:10px;\"><\/div><\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-double\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:1px;border-bottom-width:1px;\"><\/div><\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-text fusion-text-16\" style=\"--awb-text-font-family:&quot;Carrois Gothic&quot;;--awb-text-font-style:normal;--awb-text-font-weight:400;\"><h3 style=\"font-size: 16px; text-align: center; letter-spacing: 6px;\"><span style=\"color: #525252;\"><b>MATHS WEEK SUPPORTED BY<\/b><\/span><\/h3>\n<\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#ffffff;border-color:#ffffff;border-top-width:3px;\"><\/div><\/div><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-image-element fusion-image-align-center in-legacy-container\" style=\"text-align:center;--awb-max-width:750px;--awb-caption-title-font-family:var(--h2_typography-font-family);--awb-caption-title-font-weight:var(--h2_typography-font-weight);--awb-caption-title-font-style:var(--h2_typography-font-style);--awb-caption-title-size:var(--h2_typography-font-size);--awb-caption-title-transform:var(--h2_typography-text-transform);--awb-caption-title-line-height:var(--h2_typography-line-height);--awb-caption-title-letter-spacing:var(--h2_typography-letter-spacing);\"><div class=\"imageframe-align-center\"><span class=\" fusion-imageframe imageframe-none imageframe-9 hover-type-none\"><img decoding=\"async\" width=\"1600\" height=\"643\" alt=\"Mathsweek logo block 2026\" src=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026.webp\" class=\"img-responsive wp-image-23903\" srcset=\"https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026-200x80.webp 200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026-400x161.webp 400w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026-600x241.webp 600w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026-800x322.webp 800w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026-1200x482.webp 1200w, https:\/\/www.mathsweek.ie\/2026\/wp-content\/uploads\/2026\/01\/Mathsweek-logo-block-2026.webp 1600w\" sizes=\"(max-width: 800px) 100vw, 1600px\" \/><\/span><\/div><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-23 fusion_builder_column_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last\" style=\"--awb-padding-top:0px;--awb-padding-bottom:0px;--awb-bg-size:cover;--awb-margin-bottom:0px;\"><div class=\"fusion-column-wrapper fusion-column-has-shadow fusion-flex-column-wrapper-legacy\"><div class=\"fusion-column-content-centered\"><div class=\"fusion-column-content\"><div class=\"fusion-sep-clear\"><\/div><div class=\"fusion-separator fusion-full-width-sep\" style=\"margin-left: auto;margin-right: auto;margin-bottom:30px;width:100%;\"><div class=\"fusion-separator-border sep-single sep-solid\" style=\"--awb-height:20px;--awb-amount:20px;--awb-sep-color:#6dced1;border-color:#6dced1;border-top-width:6px;\"><\/div><\/div><div class=\"fusion-sep-clear\"><\/div><\/div><\/div><div class=\"fusion-clearfix\"><\/div><\/div><\/div><\/div><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"100-width.php","meta":{"_acf_changed":false,"_vp_format_video_url":"","_vp_image_focal_point":[],"footnotes":""},"class_list":["post-5","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Home &#8211; MATHS WEEK IRELAND<\/title>\n<meta name=\"description\" content=\"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mathsweek.ie\/2026\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home &#8211; MATHS WEEK IRELAND\" \/>\n<meta property=\"og:description\" content=\"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mathsweek.ie\/2026\/\" \/>\n<meta property=\"og:site_name\" content=\"MATHS WEEK IRELAND\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MathsWeek\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-28T08:55:27+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@mathsweek\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"27 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\",\"url\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\",\"name\":\"Home &#8211; MATHS WEEK IRELAND\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#website\"},\"datePublished\":\"2015-10-08T23:07:21+00:00\",\"dateModified\":\"2026-08-28T08:55:27+00:00\",\"description\":\"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#website\",\"url\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\",\"name\":\"MATHS WEEK IRELAND\",\"description\":\"Maths for All\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#organization\",\"name\":\"Maths Week Ireland\",\"url\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mathsweek.ie\\\/2025\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/MW-logo-cropped-e1521418465216.png\",\"contentUrl\":\"https:\\\/\\\/www.mathsweek.ie\\\/2025\\\/wp-content\\\/uploads\\\/2018\\\/03\\\/MW-logo-cropped-e1521418465216.png\",\"width\":20,\"height\":20,\"caption\":\"Maths Week Ireland\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mathsweek.ie\\\/2026\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/MathsWeek\",\"https:\\\/\\\/x.com\\\/mathsweek\",\"https:\\\/\\\/www.instagram.com\\\/mathsireland\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/maths-week-ireland\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCNWgrcdn2mGzKqhXJDI_-Pg?disable_polymer=true\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Home &#8211; MATHS WEEK IRELAND","description":"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mathsweek.ie\/2026\/","og_locale":"en_GB","og_type":"article","og_title":"Home &#8211; MATHS WEEK IRELAND","og_description":"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.","og_url":"https:\/\/www.mathsweek.ie\/2026\/","og_site_name":"MATHS WEEK IRELAND","article_publisher":"https:\/\/www.facebook.com\/MathsWeek","article_modified_time":"2026-08-28T08:55:27+00:00","twitter_card":"summary_large_image","twitter_site":"@mathsweek","twitter_misc":{"Est. reading time":"27 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mathsweek.ie\/2026\/","url":"https:\/\/www.mathsweek.ie\/2026\/","name":"Home &#8211; MATHS WEEK IRELAND","isPartOf":{"@id":"https:\/\/www.mathsweek.ie\/2026\/#website"},"datePublished":"2015-10-08T23:07:21+00:00","dateModified":"2026-08-28T08:55:27+00:00","description":"Maths Week will take place from 12-20 Oct 2024. We will have events and activities we have for all the family. Check out MathsWeekTV live for great shows all week.","breadcrumb":{"@id":"https:\/\/www.mathsweek.ie\/2026\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mathsweek.ie\/2026\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mathsweek.ie\/2026\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mathsweek.ie\/2026\/"},{"@type":"ListItem","position":2,"name":"Home"}]},{"@type":"WebSite","@id":"https:\/\/www.mathsweek.ie\/2026\/#website","url":"https:\/\/www.mathsweek.ie\/2026\/","name":"MATHS WEEK IRELAND","description":"Maths for All","publisher":{"@id":"https:\/\/www.mathsweek.ie\/2026\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mathsweek.ie\/2026\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.mathsweek.ie\/2026\/#organization","name":"Maths Week Ireland","url":"https:\/\/www.mathsweek.ie\/2026\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.mathsweek.ie\/2026\/#\/schema\/logo\/image\/","url":"https:\/\/www.mathsweek.ie\/2025\/wp-content\/uploads\/2018\/03\/MW-logo-cropped-e1521418465216.png","contentUrl":"https:\/\/www.mathsweek.ie\/2025\/wp-content\/uploads\/2018\/03\/MW-logo-cropped-e1521418465216.png","width":20,"height":20,"caption":"Maths Week Ireland"},"image":{"@id":"https:\/\/www.mathsweek.ie\/2026\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/MathsWeek","https:\/\/x.com\/mathsweek","https:\/\/www.instagram.com\/mathsireland\/","https:\/\/www.linkedin.com\/company\/maths-week-ireland\/","https:\/\/www.youtube.com\/channel\/UCNWgrcdn2mGzKqhXJDI_-Pg?disable_polymer=true"]}]}},"_links":{"self":[{"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/pages\/5","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/comments?post=5"}],"version-history":[{"count":620,"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/pages\/5\/revisions"}],"predecessor-version":[{"id":24293,"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/pages\/5\/revisions\/24293"}],"wp:attachment":[{"href":"https:\/\/www.mathsweek.ie\/2026\/wp-json\/wp\/v2\/media?parent=5"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}