<!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>How sloths can breathe easily upside down</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/howslothscanbreatheeasilyupsidedown.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">How sloths can breathe easily upside down</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">How sloths can breathe easily upside down</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">Sloths, the world’s slowest mammals, which live in the rainforests of Latin America, spend up to 90% of their life upside down. Yet this doesn’t affect their breathing, as it would with humans. A Swansea-led research team have discovered that this is because sloths' internal organs are stuck down, preventing them weighing down on the lungs.</p>

    <div class="news-item-content">
        <p><span>The&nbsp;</span><strong><a href="http://rsbl.royalsocietypublishing.org/content/10/4/20140172">research</a>,</strong><span>&nbsp;published by the Royal Society, was carried out by a team from the&nbsp;</span><strong><a href="http://www.swansea.ac.uk/science">College of Science</a>,&nbsp;</strong><span>with colleagues from the&nbsp;</span><strong><a href="http://www.slothsanctuary.com/">Sloth Sanctuary</a></strong><span>&nbsp;in Costa Rica.&nbsp; It will help scientists understand these elusive and charismatic creatures, which are endangered by loss of their rainforest habitat.</span></p>
<p><span><img src="/media/becky-cliffe-backpack-300-q100.jpg"
alt="Becky Cliffe backpack" title="" /></span>&zwnj;</p>
<p><em>Picture:&nbsp; Swansea University researcher Rebecca Cliffe fitting a backpack to a sloth, to allow it to be monitored.</em></p>
<p>Sloths live in rainforests in south and central America.&nbsp; They spend most of their time hanging from their hind legs to reach young, tender leaves growing on the tips of branches.&nbsp;</p>
<p>They are one of the least studied mammals. Their survival strategy is camouflage, and as a result we know very little about how they live in the wild. Even the most basic information such as their natural diet and habitat preference still remain a mystery.</p>
<p>Renowned for its slow metabolism, the sloth can take a month to digest a single leaf, and it can store a third of its bodyweight in urine and faeces -- which it deposits about once a week.&nbsp; This means that the stomach and bowel contents are extremely heavy.&nbsp; The question the team investigated, therefore, was why this extra weight does not appear to affect their breathing when they are upside down. &nbsp;<br /><br />The team found the answer: numerous unique adhesions in the abdomen anchor organs such as the liver, stomach and kidneys, preventing them from pressing on the diaphragm and inhibiting breathing.</p>
<p><img src="/media/becky-clffe-sanctuary-sloth-300-q100.jpg"
alt="Becky Cliffe sanctuary sloth" title="" /></p>
<p><em>Picture:&nbsp; a sloth at the&nbsp;<strong><a href="http://www.slothsanctuary.com/">Costa Rica Sloth Sanctuary</a></strong>, which collaborates with the Swansea University team.&nbsp;&nbsp;<br /></em></p>
<p><a href="http://www.beckycliffe.com/"><strong>More pictures and information - Rebecca Cliffe's blog</strong></a><em><br /></em></p>
<p><strong>Rebecca Cliffe</strong>, one of the authors of the paper, is a PhD researcher from the&nbsp;<strong><a href="http://www.swansea.ac.uk/science">College of Science</a>&nbsp;</strong>at Swansea University, and works at the Costa Rica Sloth Sanctuary.&nbsp;</p>
<p>She explained what the team found:<br /><br />"Sloths have multiple internal adhesions that bear the weight of the stomach and bowels when the sloth hangs inverted. We estimate that these adhesions could reduce a sloth's energy expenditure by 7 - 13% when hanging upside down.&nbsp;<br /><br />To a sloth, an energy saving of 7 to 13 percent is a big deal.&nbsp; They generate just about enough energy from their diet to move when and where required, but there is not much left in the tank afterwards.&nbsp;<br /><br />It would be energetically very expensive, if not completely impossible, for a sloth to lift this extra weight with each breath were it not for the adhesions.&nbsp; The presence of these simple adhesions therefore really is vital.&rdquo;</p>
<p><strong>&zwnj;Prof Rory Wilson</strong>&nbsp;of the College of Science at Swansea University, who supervises Rebecca Cliffe&rsquo;s research, and is a joint author of the paper, said:</p>
<p><img src="/media/becky-cliffe-sloth-backpack-300-q100.jpg"
alt="Becky Cliffe sloth backpack" title="" /></p>
<p>"Nothing that sloths do is normal.</p>
<p>They are quite the most extra-ordinary and "off-the-wall" mammals I have ever come across and yet we know so very little about them.&nbsp;<br /><br />How foolish we would be to watch these creatures become victims of deforestation and habitat fragmentation and the like without having the slightest idea how to help."<br /><br /></p>
<p><strong>Sloth facts:</strong><br /><br /><strong>&bull;&nbsp;&nbsp; &nbsp;The sloth is the world&rsquo;s slowest mammal, so sedentary that green algae grows on its coat, which helps camouflage it</strong><br /><br /><strong>&bull;&nbsp;&nbsp; &nbsp;They sleep for 15-20 hours a day and even when awake will remain motionless</strong><br /><br /><strong>&bull;&nbsp;&nbsp; &nbsp;Sloths carry up to a third of their bodyweight in urine and faeces and will only defecate once a week</strong><br /><br /><strong>&bull;&nbsp;&nbsp; &nbsp;Sloths are endangered.&nbsp;&nbsp;</strong>&nbsp;</p>
<p>Story by <a href="mailto:K.G.Sullivan@swansea.ac.uk">Kevin Sullivan</a>, Public Relations Office</p>
<hr />
<p>This research has been widely reported in the press:</p>
<p><strong><a href="http://phenomena.nationalgeographic.com/2014/04/23/to-breathe-upside-down-sloths-tape-organs-to-their-ribs/">National Geographic</a></strong><br /><a href="http://www.bbc.co.uk/news/science_and_environment/"><strong>BBC Online Science and Environment</strong></a><br /><a href="http://www.bbc.co.uk/news/uk-wales-south-west-wales-27171105"><strong>BBC Wales Online</strong></a><br /><a href="http://www.independent.co.uk/news/science/why-do-sloths-hang-upside-down-9287482.html"><strong>The Independent</strong></a><br /><a href="http://www.mailonsunday.co.uk/sciencetech/article-2613993/Sloths-breath-upside-internal-organs-anchored-glue-prevent-crushing-lungs-study-shows.html"><strong>Mail on Sunday</strong></a><br /><a href="http://www.europe1.fr/Sciences/Pourquoi-le-paresseux-n-a-t-il-pas-l-estomac-en-vrac-2100291/"><strong>Europe 1 (France)</strong></a><br /><a href="http://www.rtl.be/info/magazine/sciencesenvironnement/1085884/le-paresseux-a-l-estomac-bien-accroche"><strong>RTL (Belgium)</strong></a><br /><a href="http://www.earthtimes.org/scitech/how-sloths-breathe-upside/2587/"><strong>Earth Times</strong></a><br /><a href="http://www.neatorama.com/2014/04/24/How-Sloths-Breathe-Upside-down/#!F9Wjl"><strong>Neatorama</strong></a><br /><a href="http://news.discovery.com/animals/adaptation-keeps-sloths-lungs-from-being-crushed-140425.htm"><strong>Discovery&nbsp;News&nbsp;(USA)</strong></a><br /><a href="http://www.southwales-eveningpost.co.uk/s-sloth-s-life-Swansea-researchers-hairy/story-21013107-detail/story.html"><strong>South Wales Evening Post</strong></a><br /><a href="http://www.walesonline.co.uk/news/wales-news/scientists-unlock-sloths-breathing-secret-7035678"><strong>Western Mail</strong></a><br /><a href="http://www.sundaypost.com/that-s-life/funday-post/in-other-news-2.1544/sloths-upside-down-secret-revealed-1.336950"><strong>Sunday Post</strong></a><br /><a href="http://www.georgianewsday.com/news/regional/236275-sloths-can-breath-upside-down-because-their-internal-organs-are-anchored-down.html"><strong>GA Daily News</strong></a><br /><a href="http://esciencenews.com/sources/bbc.news.science.nature/2014/04/26/how.sloths.breathe.upside.down"><strong>e! Science News (Canada)</strong></a><br /><a href="http://www.livescience.com/45147-how-sloths-hang-upside-down.html"><strong>Live Science (USA)</strong></a><br /><strong>UK Wired News</strong><br /><a href="http://www.frenchtribune.com/teneur/1422380-sloths-special-abdominal-adhesions-allow-them-breath-while-hanging-upside-down"><strong>French Tribune</strong></a><br /><a href="http://www.irishexaminer.com/world/sloths-are-uniquely-adapted-to-hanging-around-266593.html"><strong>Irish Examiner</strong></a><br /><strong><a href="http://www.nbcnews.com/science/science-news/how-sloths-hang-upside-down-without-getting-tired-n91516">NBC News</a></strong><br /><a href="http://www.designntrend.com/articles/13251/20140428/sloths-upside-down-lifestyle-explained-by-scientists.htm"><strong>Design &amp; Trend</strong></a><br /><a href="http://www.businessinsider.com/sloths-hang-upside-down-without-getting-tired-2014-4"><strong>Business Insider</strong></a><br /><a href="http://www.mnn.com/earth-matters/animals/stories/how-do-sloths-hang-upside-down-all-day-without-getting-tired"><strong>Mother Nature Network</strong></a><br /><a href="http://www.tempo.co/read/news/2014/04/28/095573948/Tergantung-Terbalik-Kukang-Tak-Bakal-Sesak-Napas"><strong>Tempo (Indonesia)</strong></a><br /><a href="http://www.economist.com/blogs/babbage/2014/05/sloths"><strong>The Economist</strong></a><br /><a href="http://www.walesonline.co.uk/news/wales-news/watch-machete-carrying-sloth-woman-swansea-7494615"><strong>Wales Online</strong></a></p>
<p><strong>&nbsp;</strong></p>
    </div>

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

        <li class="news-item-post-info">
            <a href="/science/news/howslothscanbreatheeasilyupsidedown.php" rel="bookmark">
                <abbr class="published" title="2014-04-24T11:49:00+01:00">Thursday 24 April 2014 11.49 BST</abbr>
            </a>
        </li>

        <li class="news-item-post-info updated-container">
            <abbr class="updated" title="2015-05-18T14:38:32+01:00">Monday 18 May 2015 14.38 BST</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>
