<!doctype html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8">        <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9">               <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js">                      <!--<![endif]-->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-2764516-1"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-2764516-1');
  gtag('config', 'UA-2764516-41');
</script>
    <meta charset="utf-8">

    <title>Schoolgirls discover why STEM subjects are a wise career choice</title>

    <link type="text/css" rel="stylesheet" href="/_assets/css/general/basic.3e671936f996725dc539a79a71616828.css" />
    <link rel="canonical" href="https://www.swansea.ac.uk/science/news/schoolgirlsdiscoverwhystemsubjectsareawisecareerchoice.php" /> 





<meta name="viewport" content="width=device-width, initial-scale=1.0;">
<meta property="su:page-type" content="News Item">
<meta property="su:section-id" content="85435">

    <script type="text/javascript" src="/_assets/vendor/enhance.js"></script>
    <script type="text/javascript">

        var SU =        {
                            customScripts: {
                                preRepositioning:  [],
                                postRepositioning: []
                            }
                        },

            dataLayer = [],

            styles =    [
                            '/_assets/css/general/desktop.6e59e83ff59cb40781315a71921a9e90.css',
                            {
                                href: '/_assets/css/common/ie.f69f56d283a8a388167e8f1fe4a525c8.css',
                                iecondition: 'all'
                            },
                            {
                                href: '/_assets/css/common/ie7.bbc89b82ec50a07d8213605799f05ae8.css',
                                iecondition: 7
                            },
                            {
                                href: '/_assets/css/common/ie8.56dd48f60646979b66cdc5493ad67f3c.css',
                                iecondition: 8
                            }
                        ],
        
            scripts =   [
                           '/_assets/js/common/modernizr-jquery.all.min.c382d4fde9d5be0fb44ed6d0257a2b4a.js'
                        ];
        

        

        
        scripts.push('/_assets/js/general/desktop.all.min.e5340f28032f592cbeeb2441d1ec1985.js');


        enhance({
            loadStyles: styles,
            loadScripts: scripts,
            forcePassText: 'Enhanced version',
            forceFailText: 'Basic version'
        });
    </script>


</head>

<body id="content" class="layout-general-wrapper">
 
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-5MZHZM"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5MZHZM');</script>
<!-- End Google Tag Manager -->

    <div id="general" class="layout-general">

        <!--noindex-->
        <div id="header" class="layout-header">
<h1 id="logo" class="logo">
    <span class="logo-text">Schoolgirls discover why STEM subjects are a wise career choice</span>
    <a id="logo-link" href="https://www.swansea.ac.uk/">

        <img class="logo-image" src="/_assets/images/precedent/logo.en.png" alt="Swansea University Logo" />

    </a>
</h1>
            <div id="skipToContent" class="skip-to-content">
                <a class="skip-to-content-link" tabindex="1" href="#content-items" title="skip to content">Skip to content</a>
            </div>

<div id="globalNavWrapper" class="header-links">
    <ul id="globalNav" class="header-links-list">
    
        <!-- navigation object : SU_audience navigation --><li class="header-links-list-item"><a href="https://myuni.swansea.ac.uk/">Current Students</a></li><li class="header-links-list-item"><a href="https://staff.swansea.ac.uk/">Staff</a></li><li class="header-links-list-item"><a href="http://www.swanseauniversity.com.cn">&#20013;&#25991;</a></li>
        
        

    </ul>
</div>
            
            <div id="globalSearch" class="global-search-form">
<div class="global-search-form">
	<form action="https://www.swansea.ac.uk/search/">
	  <div>
	    <input type="hidden" name="c" value="swansea-web" />
	    <input
           id="global-search-form-q"
	       type="text"
	       name="q"
	       placeholder="Site Search"
	       size="31"
	       class="global-search-form-query"
	    />
	    <input class="global-search-form-submit" type="submit" value="GO" />
	  </div>
	</form>
</div>

<script class="register-custom-scripts">
(function () {
    SU.customScripts.postRepositioning.push(function () {
    
        var endpoint = 'https://swansea.funnelback.co.uk/s/suggest.json',

            unique = function(arr) {
                var hash = {}, result = [];
                for ( var i = 0, l = arr.length; i < l; ++i ) {
                    if ( !hash.hasOwnProperty(arr[i]) ) {
                        hash[ arr[i] ] = true;
                        result.push(arr[i]);
                    }
                }
                return result;
            },
            
            setHandler = function() {
                $('#global-search-form-q').off().autoComplete({
                    source: function(term, response) {
                        console.log("You typed [" + term + "]");
                        $.getJSON(
                            endpoint,
                            {
                                collection:    'swansea-web',
                                partial_query: term
                            },
                            function(data) {
                                response(unique(data));
                            }
                        );
                    }
                });
            };
    
        console.group('Initialising auto complete');
        window.setTimeout(function () {
            setHandler();
        }, 500);
        
        console.groupEnd();
    });
}());
</script>
            </div>
            
            <div id="naviBar" class="main-nav">
<!-- navigation object : SU_Main_Nav --><ul id="mainNav" class="main-nav-list"></ul>

            </div>
        </div>
        <!--endnoindex-->
        
        <div class="layout-container">
            <div id="main" class="layout-content">
                <div id="contentHeader" class="content-header">

                    <!--noindex-->
<div class="breadCrumbHolder module">
    <div class="breadCrumb module">
        <ul>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/" itemprop="url">
                    <span itemprop="title">Home</span>
                </a>
            </li>
            <li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
                <a href="https://www.swansea.ac.uk/press-office/" itemprop="url">
                    <span itemprop="title">Press Office</span>
                </a>
            </li>
            <li>
                <span>College of Science News Centre</span>
            </li>
        </ul>
    </div>
</div>
                    <!--endnoindex-->

                    <h1 class="content-header-heading">Schoolgirls discover why STEM subjects are a wise career choice</h1>
                </div>

                <div id="splash-items" class="layout-splash">
                </div>

                <!--noindex-->
                <div class="layout-content-nav">
                    <div id="secondaryNavWrapper">
<!-- navigation object : SU Inline Menu level 4 -->
                    </div>
                </div>
                <!--endnoindex-->

                <div id="content-items" class="layout-content-items content-items">
                    <div class="layout-featured-items">
                    </div>

                    <div class="layout-article-items">
  <div class="news-item-fulltext">
    <p style="padding: 1.5em; text-align: center; background-color: #ffc266; font-weight: bold">
      Please note, this page has been archived and is no longer being updated.
    </p>
    <p class="news-item-summary">Swansea University has hosted a Discover Club for year nine schoolgirls, to encourage them to consider future careers in science, technology, engineering, mathematics (STEM) and construction subject areas</p>

    <div class="news-item-content">
        <p><img src="/media/WISE - STEM.gif"
alt="STEM - Discover Club" title="STEM - Discover Club" />&nbsp;</p>
<p>The six-week scheme was organised by Careers Wales West in partnership with Women into Science, Engineering and Construction (WISE) and was coordinated by Dr Victoria Hobson, a marine biology researcher at the College of Science.</p>
<p>Twenty of the city&rsquo;s most promising female science pupils, their parents, and school staff were welcomed to the University at the start of the scheme by Professor Rory Wilson, zoologist and chief scientific advisor for National Geographic&rsquo;s Great Migrations series and Professor of Geography and Queen&rsquo;s Polar Medal winner Tavi Murray.</p>
<p>Throughout the six-week programme, they participated in workshops offering a wide range of fun science and engineering activities, including designing and constructing model bridges, getting to grips with glaciology by building glaciers to discover what makes them flow at different rates, and how to monitor the wildlife we can&rsquo;t immediately see.</p>
<p>The pupils also used forensic science techniques to investigate a &lsquo;whodunit-style&rsquo; murder scenario, as well as learning about genetics through the activity of extracting DNA from strawberries.&nbsp; Dr Victoria Hobson, the scheme&rsquo;s co-ordinator at Swansea University said: &ldquo;The hands-on activities programme was designed to encourage these pupils to consider careers in STEM areas and to help dispel gender stereotypes.</p>
<p>&ldquo;We have such excellent and enthusiastic female scientists and engineers at the University and giving the pupils the opportunity to meet such dynamic role models was very important.</p>
<p>&ldquo;The project, which was a great success, demonstrated that whatever your background or gender, science careers can be both incredibly varied and fantastically rewarding.&rdquo;</p>
<p>Read the coverage by the&nbsp;	<a href="/media/Discover 2011 - Evening Post Apr 2011.pdf">Evening Post</a>
.</p>
<p>Image caption: Dr Sarah Forbes-Robertson, Sports Science Researcher at Swansea University with two of the Discover Club participants Catrin Harris and Harriet Boughey, with their DNA model made from marshmallows.</p>
<h6><em>This news item has been posted for the College of Science by Bethan Evans, Swansea University Public Relations Office, Tel: 01792 295049 or email: </em><a href="mailto:b.w.evans@swansea.ac.uk"><em>b.w.evans@swansea.ac.uk</em></a><em>.&nbsp; </em></h6>
    </div>

    <ul class="news-item-post-info-container vcard">
        <li class="news-item-post-info author">
           Posted by
            <span class="fn">University media centre</span>
        </li>

        <li class="news-item-post-info">
            <a href="/science/news/schoolgirlsdiscoverwhystemsubjectsareawisecareerchoice.php" rel="bookmark">
                <abbr class="published" title="2012-03-21T00:00:00+00:00">Wednesday 21 March 2012 00.00 GMT</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2012-03-21T12:29:08+00:00">Wednesday 21 March 2012 12.29 GMT</abbr>
        </li>

        <li class="news-item-post-info">
        	<span class="fn org">College of Science</span>
        </li>
    </ul>

</div>

                    </div>

                    <div class="layout-related-items">
                    </div>
                </div>


            </div>

            <!--noindex-->
            <div id="footer" class="layout-footer">
                <ul id="footerLinks" class="footer-links">
<!-- navigation object : SU_footer navigation --><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/jobs-at-swansea/">Jobs</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/press-office/">Press</a></li><li class="footer-links-list-item"><a href="https://www.swansea.ac.uk/about-us/safety-and-security/health-and-safety/">Health &amp; Safety</a></li><li class="footer-links-list-item"><a href="/includes/footer/disclaimer-and-copyright/">Disclaimer &amp; Copyright</a></li><li class="footer-links-list-item"><a href="/includes/footer/site-map/">Site map</a></li><li class="footer-links-list-item"><a href="/includes/footer/privacyandcookies/">Privacy and Cookies</a></li><li class="footer-links-list-item"><a href="http://www.swan.ac.uk/course-search/">Course Search</a></li>
                </ul>

                <div id="footerDisclaimer" class="footer-disclaimer">
                    <p class="footer-disclaimer-text">Swansea University is a registered charity. No. 1138342.</p>
                </div>
            </div>
            <!--endnoindex-->

        </div>

    </div>


<script id="desktop-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <div class="skip-to-content" id="skipToContent">
            {{{ skipToContent }}}
        </div>

        <h1 id="logo" class="logo">
            {{{ logo }}}
        </h1>

        <div id="globalNavWrapper" class="header-links">
            <ul id="globalNav" class="header-links-list">
                {{{ globalNav }}}
            </ul>
        </div>

        <div id="globalSearch" class="global-search-form">
            {{{ globalSearch }}}
        </div>
                    
        <div id="naviBar" class="main-nav">
            <ul id="mainNav" class="main-nav-list">
                {{{ mainNav }}}
            </ul>
        </div>
    </div>

</script>


<script id="mobile-header-template" type="text/x-tmpl-mustache">

    <div id="header" class="layout-header">
        <span class="layout-menu-bar">
            <a id="layout-menu-bar-toggle" class="layout-menu-bar-toggle" href="#">{{mobile.linksText}}</a>
        </span>

        <a id="logo-link" href="{{mobile.logoLinkHref}}">
            <img class="logo-image" alt="{{mobile.logoAlt}}" src="{{mobile.logoSrc}}" />
        </a>
    </div>

</script>


<script id="desktop-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="secondaryNavWrapper">
             <ul id="secondaryNav" class="content-nav content-nav-items">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="mobile-menu-template" type="text/x-tmpl-mustache">

    <div class="layout-content-nav">
        <div id="globalNavWrapper">
            {{{globalNav}}}
        </div>

        <div id="naviBar">
            {{{mainNav}}}
        </div>

        <div id="secondaryNavWrapper">
             <ul id="secondaryNav">
                 {{{secondaryNav}}}
             </ul>
         </div>
    </div>

</script>


<script id="desktop-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">

        <ul class="tabs-item-list">
{{#tabs}}
            <li class="tabs-item-list-tab-item tabs-pod-tabs-tab-heading">
                <a class="tabs-item-list-tab-item-link" href="#">{{ tabHeading }}</a>
            </li>
{{/tabs}}
        </ul>

{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <div class="tabs-pod-tabs-tab-content">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}

    </div>

</script>


<script id="mobile-tabs-pod-template" type="text/x-tmpl-mustache">

    <h2 class="tabs-pod-title">{{ podTitle }}</h2>
    <div class="tabs-pod-tabs">
{{#tabs}}
        <div class="tabs-pod-tabs-tab">
            <h3 class="tabs-pod-tabs-tab-heading is-collapsed">
                <a href="#">{{ tabHeading }}</a>
            </h3>
            <div class="tabs-pod-tabs-tab-content" style="display: none">
                {{{ tabContent }}}
            </div>
        </div>
{{/tabs}}
    </div>

</script>


</body>

</html>
