CINXE.COM

Faculty of Mathematics and Computer Science - Georg-August-Universität Göttingen

<!DOCTYPE html> <html dir="ltr" lang="de"> <head> <title>Faculty of Mathematics and Computer Science - Georg-August-Universit&auml;t G&ouml;ttingen</title> <!-- meta tags --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"> <!-- OffCanvas Sidebar --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- Offcanvas Sidebar Ende --> <!-- Metatags --> <meta name="description" content="Website of the Georg-August-University G&ouml;ttingen"> <meta name="og:description" content="Website of the Georg-August-University G&ouml;ttingen"> <meta name="og:site_name" content="Georg-August Universität Göttingen" /> <meta name="og:title" content="Faculty of Mathematics and Computer Science - Georg-August-University G&ouml;ttingen" /> <link name="og:url" content="https://www.uni-goettingen.de/en/20491.html" /> <meta name="og:type" content="Website" /> <meta name="DC.description" content="Webseiten der Georg-August-Universit&auml;t G&ouml;ttingen"> <meta name="author" content="Georg-August-Universit&auml;t G&ouml;ttingen - &Ouml;ffentlichkeitsarbeit"> <meta name="DC.creator" content="Georg-August-Universit&auml;t G&ouml;ttingen - &Ouml;ffentlichkeitsarbeit"> <meta name="generator" content="G&ouml;ttinger Content Management System (GCMS)"> <meta name="geo.region" content="DE-NI" /> <meta name="geo.placename" content="G&ouml;ttingen" /> <meta name="geo.position" content="51.534063;9.937966" /> <meta name="ICBM" content="51.534063, 9.937966" /> <!-- icons and theme colors for various OS --> <link rel="apple-touch-icon" sizes="180x180" href="/img/redesign/favicons/apple-touch-icon.png"> <link rel="icon" type="image/png" href="/img/redesign/favicons/favicon-32x32.png" sizes="32x32"> <link rel="icon" type="image/png" href="/img/redesign/favicons/favicon-16x16.png" sizes="16x16"> <link rel="manifest" href="/img/redesign/favicons/manifest.json"> <link rel="mask-icon" href="/img/redesign/favicons/safari-pinned-tab.svg" color="#13306a"> <meta name="theme-color" content="#13306a"> <!-- Google Site Verification --> <meta name="google-site-verification" content="XLuHHDYYiuRkAjLrv8xqjsBz3F4ecobfK46Fh-j6AqA" /> <!-- uni-goettingen.de --> <meta name="google-site-verification" content="DH0L1y6PfeMmBX7S0m9OUk5lXbue3RdTqbxXZRxOOug" /> <!-- ugoe.de --> <meta name="google-site-verification" content="DLfOp5ZsuXwK-ZsN-Kmbelrq2DTZH3xJ9_HbrOYRYw8" /> <!-- jura-goettingen.de --> <!-- Bootstrap 3.4.1 styles --> <link href="/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- FontAwesome 5.14.0 styles --> <link href="/resources/font-awesome/css/all.min.css" rel="stylesheet"> <!-- Fancybox 3.5.7 styles --> <link href="/resources/fancybox/jquery.fancybox.min.css" rel="stylesheet"> <!-- GCMS default styles --> <link href="/css/default.css?v=1" rel="stylesheet"> <!-- jQuery 3.5.1 library --> <script src="/js/jquery/jquery-3.5.1.min.js"></script> <!-- Bootstrap 3.4.1 library --> <script src="/resources/bootstrap/js/bootstrap.min.js"></script> <!-- Fancybox 3.5.7 library --> <script src="/resources/fancybox/jquery.fancybox.min.js"></script> <!-- Script für ContentBlocker für iFrames und Twitter bzw SocialFilter --> <script src="/resources/IFrameShield/iFrameShield.js"></script> <!-- ContentBlocker toggle switch --> <link href="/resources/IFrameShield/iFrameShield.css" rel="stylesheet"> <script type="text/javascript"> function hideCookieBanner() { var cookieBanner = document.getElementById("cookie_banner_footer"); cookieBanner.className="hide_banner" } function isCookieSet(cookieName) { return document.cookie.split(';').some((item) => item.trim().startsWith(cookieName)) } function setCookie(cookieName, cookieValue, expirationDays) { var d = new Date(); d.setTime(d.getTime() + (expirationDays * 24 * 60 * 60 * 1000)); var expires = "expires=" + d.toUTCString(); document.cookie = cookieName + "=" + cookieValue + ";" + expires + ";path=/"; } function deleteCookie(name) { document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;'; } function setMatomoOptIn() { deleteCookie('matomo_optOut') setCookie("matomo_optIn", 1, 365) location.reload(); } function setMatomoOptOut() { setCookie("matomo_optOut", 1, 365) location.reload(); } function deleteMatomoCookies(){ var matomoCookies = document.cookie.split(';').filter(cookie => cookie.trim().startsWith('_pk_')); matomoCookies.forEach((cookie, i) => deleteCookie(cookie)); deleteCookie("matomo_optIn") setMatomoOptOut() location.reload(); } if(isCookieSet('matomo_optIn')) { } </script> <!-- End Piwik Tag --> <!-- Faculty color --> <style> #navigation-affix, #navigation-toggle, #search-content, #sidebarLeft, #navigation-container-mobil { background-color: #C1633E; } .box { border-color: #C1633E; } .facInfoFarbe_border { border-color: #C1633E; } .facInfoFarbe_background { background-color: #C1633E; } .facInfoFarbe_text { color: #C1633E; } </style> <!-- Template: faculty_start --> <!-- OffCanvas Sidebar --> <link rel="stylesheet" href="/css/offcanvas.css" /> <script src="/js/jquery/jquery.offcanvas.js"></script> <script> jQuery(document).ready(function($) { $('html').offcanvas({ hasSidebarLeft: true, hasSidebarRight: false }); //Animatefunktion überschreiben, damit ein animate auf body auf scrollable-area durchgereicht wird. var oAnimate = $.fn.animate; $.fn.animate = function() { if (this.is('body')) { return oAnimate.apply($('#scrollable-area'), arguments); } else { return oAnimate.apply(this, arguments) }; } //Überschreibe Bootstrapfunktionen, damit das offcanvas Menü funktioniert und die Bootstrap Modals an #page geheftet werden und nicht an body _backdrop = $.fn.modal.Constructor.prototype.backdrop; $.extend( $.fn.modal.Constructor.prototype, { backdrop: function(callback) { _backdrop.apply(this, arguments) $('.modal-backdrop').appendTo('#page') } } ) }); </script> <!-- If browser is internet explorer run HTML5 compatibility code --> <!-- Ende OffCanvas Sidebar --> </head> <script> const forms = document.getElementsByClassName('search-form'); function updateFormAction(){ var currentPath = window.location.pathname; console.log(currentPath); var host = window.location.hostname; var port = window.location.port; var protocol = window.location.protocol; var meiliRadioDesktop = document.getElementById('meiliRadio'); var meiliRadioMobile = document.getElementById('meiliRadioMobile'); var googleRadioDesktop = document.getElementById('googleRadio'); var googleRadioMobile = document.getElementById('googleRadioMobile'); var absoluteURL; if(meiliRadioDesktop.checked == true || meiliRadioMobile.checked == true){ if(currentPath.includes('/en/')){ for(let i = 0; i < forms.length; i++){ absoluteURL = protocol + "/en/meili/suche.html"; forms[i].setAttribute("action", absoluteURL); if(forms[i].action.includes('google')){ forms[i].action = forms[i].action.replace("google/", ""); } } }else{ for(let i = 0; i < forms.length; i++){ absoluteURL = protocol + "/de/meili/suche.html"; forms[i].setAttribute("action", absoluteURL); } } }else{ if(currentPath.includes('en') || currentPath.includes('de')){ for(let i = 0; i < forms.length; i++){ absoluteURL = protocol + "/google/suche.html"; forms[i].setAttribute("action", absoluteURL); } }else{ googleRadioMobile.checked = true; googleRadioDesktop.checked = true; for(let i = 0; i < forms.length; i++){ absoluteURL = protocol + "/de/google/suche.html"; forms[i].setAttribute("action", absoluteURL); } } } } //add user input to action function updateUrl(){ console.log("aufgerufen"); let inputs = document.getElementsByClassName('form-control'); for(let i = 0; i < forms.length; i++){ forms[i].action = forms[i].action + "?query=" + inputs[i].value; } return true; } </script> <body> <aside id="sidebarLeft" class="sidebarLeft"> <div class="scrollableArea"> <a class="shutLeft" href="">&#10006;</a> <ol id="padded-light" class="paddedLight"> <li> <form class="search-form" name="searchMobile" method="POST" action="/de/google/suche.html" onsubmit="updateUrl()"> <div class="form-group"> <label class="sr-only" for="search">Suchbegriff</label> <div class="input-group"> <input type="text" class="form-control" id="search-mobile" name="query"> <div class="input-group-addon" style="cursor:pointer;" onclick="updateUrl(); document.forms.searchMobile.submit();"><span class="fas fa-search"></span></div> </div> </div> <div class="form-check"> <input checked class="form-check-input" type="radio" name="searchengineRadio" id="googleRadioMobile" value="option1" onclick="updateFormAction()"> <label for="searchengineRadio" class="form-check-input" style="font-size:85%;"> Search with Google™ </label> </div> <div class="form-check"> <input class="form-check-input" type="radio" name="searchengineRadio" id="meiliRadioMobile" value="option1" onclick="updateFormAction()"> <label for="searchengineRadio" class="form-check-label" style="font-size: 85%;"> Use Internal Search </label> <div> <p style="font-size: 50%; margin-left: 2rem;">(limited result quality)</p> </div> </div> </form> </li> <li><a href="/en/aktuelles/648388.html">Aktuelles</a></li> <li><a href="/en/dean%27s+office/20701.html">Dean's office</a></li> <li><a href="/en/faculty+council/20703.html">Faculty Council</a></li> <li><a href="http://www.math.uni-goettingen.de/index_en.html" target="_blank">Mathematics</a></li> <li><a href="http://www.uni-goettingen.de/en/138524.html" target="_blank">Computer Science</a></li> <li><a href="/en/alumni/619883.html">Alumni</a></li> <li><a href="/en/foundation/571165.html">Foundation</a></li> <li><a href="/en/627225.html"></a></li> </ol> </div> </aside> <section id="page" class="page"> <div id="scrollable-area" class="scrollableArea"> <header id="header-logo-container"> <div class="container-fluid logo-container"> <a href="/"><img id="logo" src="/img/redesign/logo.svg" alt="Georg-August-Universit&auml;t G&ouml;ttingen"><img id="print-logo" class="hidden" src="/img/redesign/print-logo.svg" alt="Georg-August-Universit&auml;t G&ouml;ttingen"></a> <a href="/en/20491.html"><span>Faculty of Mathematics and Computer Science</a></span> </div> </header> <div id="navigation-container-mobil" class="sticky-top"> <div class="container-fluid"> <a id="navigation-toggle-mobil" role="button" aria-expanded="false" aria-controls="navigation"><span>Men&uuml;</span><span id="leftBurger" class="slideRight fas fa-bars"></span></a> </div> </div> <div id="navigation-container" class="sticky-top"> <div id="navigation-affix"> <div class="container-fluid"> <a id="navigation-toggle" role="button" data-toggle="collapse" aria-expanded="false" aria-controls="navigation"><span>Men&uuml;</span><span class="fas fa-bars"></span></a> <div id="navigation" class="collapse"> <nav> <ol> <li><a href="/en/aktuelles/648388.html">Aktuelles</a></li> <li><a href="/en/dean%27s+office/20701.html">Dean's office</a></li> <li><a href="/en/faculty+council/20703.html">Faculty Council</a></li> <li><a href="http://www.math.uni-goettingen.de/index_en.html" target="_blank">Mathematics</a></li> <li><a href="http://www.uni-goettingen.de/en/138524.html" target="_blank">Computer Science</a></li> <li><a href="/en/alumni/619883.html">Alumni</a></li> <li><a href="/en/foundation/571165.html">Foundation</a></li> <li><a href="/en/627225.html"></a></li> </ol> </nav> <form class="search-form" method="POST" action="/de/google/suche.html" onsubmit="return updateUrl()"> <div class="form-group"> <label class="sr-only" for="search">Suchbegriff</label> <div class="input-group"> <input type="text" class="form-control" id="search-mobile" name="query"> <div class="input-group-addon" style="cursor:pointer;" onclick="document.forms.search.submit()"><span class="fas fa-search"></span></div> </div> </div> </form> </div> </div> </div> </div> <div id="search-container"> <div id="search-content" class="collapse hidden-xs"> <div class="container-fluid"> <div class="row"> <div id="search-form" class="col-sm-6 h-100"> <form class="search-form" id="searchForm" name="search" method="POST" action="/de/google/suche.html" onsubmit="return updateUrl()" style="display: block;"> <div class="form-group"> <label class="sr-only" for="search">Suchbegriff</label> <div class="input-group"> <input type="text" class="form-control" id="search" name="query"> <div class="input-group-addon" style="cursor:pointer;" onclick="updateUrl(); document.forms.search.submit();"><span class="fas fa-search"></span></div> </div> </div> <div class="form-check"> <input checked name="searchengineRadio" class="form-check-input" type="radio" id="googleRadio" onclick="updateFormAction()"> <label class="form-check-label" for="googleRadio"> Search with Google™ </label> </div> <div class="form-check" style="display: inline-block;"> <input name="searchengineRadio" class="form-check-input" type="radio" id="meiliRadio" onclick="updateFormAction()"> <span class="form-check-label" for="meiliRadio"> Use Internal Search (limited result Quality). </span> </div> <div> <button style="margin-top: 1rem;" type="submit" class="btn btn-primary">Suche starten</button> </div> </form> </div> <div class="col-sm-6 h-100" style="margin-top: 2rem;"> <p class="mt-3">By using the Google™ Search you agree to Google's <a target="_blank" href="https://policies.google.com/"><u>privacy policy</u></a></p> <div style="display: block;"> <div> <label style="margin-top: 2.5rem;" for="eCampus">Looking for people, classes or lecturing halls ?</label> </div> <div> <a target="_blank" href="https://ecampus.uni-goettingen.de/"> <button name="eCampus" class="btn btn-primary"> <span class="material-symbols-outlined"></span> To eCampus </button> </a> </div> </div> </div> <div class="col-sm-12"> <a id="search-close" role="button" data-toggle="collapse" href="#search-content" aria-expanded="false" aria-controls="search-content"><span class="fas fa-times"></span> Close</a> </div> </div> </div> </div> </div> <!-- Ende Search container --> <nav aria-label="breadcrumb" id="breadcrumb-container" class="overflow-auto"> <!-- DESKTOP --> <div class="container-fluid"> <ol class="hidden-xs breadcrumb bg-white pull-left px-0 mb-0"> <li class="breadcrumb-item"> <a href="/en/20491.html" title="Homepage"> <span class="fas fa-home"></span> <span class="sr-only">Homepage</span> </a> </li> </ol> <!-- MOBILE --> <ol id="breadcrumb-mobile" class="visible-xs breadcrumb bg-white pull-left px-0 mb-0 "> </ol> <div class="pull-right py-4 text-uppercase"> <a id="search-button" class="hidden-xs mr-4" role="button" data-toggle="collapse" href="#search-content" aria-expanded="false" aria-controls="search-content"> <span class="fas fa-search"></span> Search </a> <a class="lang-button" href="/de/20491.html"> <span class="fas fa-globe"></span> Deutsch </a> </div> </div> </nav> <div id="main"> <div class="container-fluid"> <div class="header-image"> <img src="/storage/pictures/17794aca17d3b42e2bc243a6afdc5dbb.jpg" alt="Faculty of Mathematics and Computer Science" class="img img-responsive"> </div> <div id="page-content" class="row"> <article class="col-sm-8"> <!-- Language Warning --> <!-- �berschrift --> <h1 class="headline">Faculty of Mathematics and Computer Science</h1> <!-- Articles --> <section> <h2 class="headline"></h2> <p class="text"><hr><b>CURRENT INFORMATION:</b><br /> <!--Vacancy notive for a <a href="/en/688878.html"><b>W2 Professorship in Mathematics and Mathematics Education</b></a> at the Institute of Mathematics<br /> The Faculty is currently running an appointment procedure for a <b>W2 professorship for Algebra / Algebraic Geometry</b>. The public hearings of candidates will take place on Wednesday, May 22nd and Thursday, May 23rd in the Sitzungszimmer of the Institute of Mathematics. Information on the lecture topics can be found <a href="/de/document/download/94fa9cb17b4b9ef7a5205432c038972b.pdf/2024_MI_W2_Algebra_Algebraische_Geometrie_2. Sitzung_Anhörungen.pdf" target="_blank"><b>here</b></a>.<br /> Vacancy notive for a <a href="/en/682558.html"><b>W2 Professorship in Algebra / Algebraic Geometry</b></a> at the Institute of Mathematics--> </section> <hr> <section> <h2 class="headline">The Faculty</h2> <p class="text"><!-- <hr><b>CURRENT INFORMATION:</b><br /> </p><ul class="txtlist"><li class="content">An appointment process is currently underway at the faculty for a <a href="/en/664128.html"><b>W3 professorship "Algebra / Discrete Mathematics"</b></a>.</li> <li class="content">A <b><a href="/de/document/download/36f4e5bb567e9b51ea377f124b7c5397.pdf/Gleichstellungsversammlung_2023_Einladung.pdf" target="_blank">Faculty Equality Assembly</a></b> will be held on March 20, 2023.</li></ul><p class="text"><hr> -->The Faculty of Mathematics and Computer Science was founded in October of 2008. It is a fusion of the former Faculty of Mathematics and the Institute of Computer Science.<br /> <br /> The faculty offers an attractive study program: Bachelor's programs in Mathematics and Applied Computer Science, Master's programs in Mathematics, Business Mathematics and Applied Computer Science, teacher training programs with the subject combination Mathematics and Computer Science and 17 other combinations with Mathematics or Computer Science. Since 2018, the faculty has also offered Bachelor's programs in Applied Data Science and Mathematical Data Science, and since the winter semester of 2021, also a Master's program in Applied Data Science. There are very good doctoral graduation possibilities joining the doctoral programs in Mathematics, Computer Science and Environmental Informatics of the <a href="/en/563915.html"><b>Georg-August University School of Science (GAUSS)</b></a>. For more information, see the <a href="http://www.math.uni-goettingen.de/index_en.html" target="_blank"><b>Mathematics</b></a> and <a href="/en/619480.html"><b>Computer Science</b></a> web pages. <br /> <br /> <b>Information on the course of studies offered by the faculty:</b> <br /> </p><ul class="txtlist"> <li class="content"><a href="/en/473454.html"><b>Mathematics</b></a></li> <li class="content"><a href="/en/619490.html"><b>Computer Science</b></a></li> </ul><p class="text"> </section> <hr> <section> <h2 class="headline">Göttingen Spirit</h2> <img src="/storage/pictures/66ff9e96b9a9df07ba8370bb42b0d5a3.jpg" class="imagefloatleft" alt="Courant_3"> <p class="text">Shortly before his death in 1972, <b>Richard Courant</b> was asked about the unique human and scientific spirit that characterized his Institute of Mathematical Sciences at New York University. Courant's answer was, "It is Göttingen. Göttingen is here." He was referring to the scientific approach and research environment in Göttingen in the period before 1933: numerous exceptional scientists were at work in an atmosphere that supported the free exchange of ideas both within and between disciplines, attracting the best scientists all over the world. Today, <a href="https://goettingen-campus.de/" target="_blank"><b>Göttingen Campus</b></a> stands for a lively exchange of ideas and for a highly productive collaboration in the areas of research and teaching. The Göttingen Campus is constituted by Göttingen University together with eight internationally renowned non-university research establishments - making it a successful centre of research in the middle of Germany. We know that in order to discover new things and gain new insights we have to confront what is known with unconventional ideas and concepts.That is why we need personalities who "think and act against the current". </section> <hr> </article> <!-- Rechte Sidebar --> <aside class="col-sm-4"> <!-- Unterseiten --> <ol class="box"> <li class="separator"> Alumni Göttingen </li> <li> <a href="/en/chapter+mathematik+und+informatik/648394.html"> Chapter Mathematik und Informatik </a> </li> <li> <a href="https://www.alumni-goettingen.de/gruppen/mathematik-informatik/?lang=us" target="_blank"> Alumni Göttingen Portal </a> </li> <li> <a href="/en/alumni+g%c3%b6ttingen+e.+v./571295.html"> Alumni Göttingen e. V. </a> </li> <li class="separator"> Informationen </li> <li> <a href="/en/good+scientific+practice/621337.html"> Good Scientific Practice </a> </li> <li> <a href="/en/gauss/621339.html"> GAUSS </a> </li> <li> <a href="/en/erasmus+programme/621345.html"> Erasmus Programme </a> </li> <li> <a href="/en/623621.html"> </a> </li> </ol> <!-- Sidebar Bild --> <!-- Html Inhalt f�r Sidebar --> <div class="box"> <p class="text"><a href="/en/218085.html"><img class="imagetag" src="/storage/pictures/738265dc10a8e7692aed8473c76930c8.jpg" alt="Deutschlandstipendium"></a></p> </div> </aside> </div> </div><!-- Ende container-fluid --> </div><!-- Ende #main --> <footer> <div class="container-fluid"> <div class="row"> <div class="col-sm-6 col-md-3"> <h3>Contacts</h3> Georg-August-Universität Göttingen<br/> Fakultät für Mathematik und Informatik<br/> Bunsenstr. 3-5<br/> 37073 Göttingen<br/><br/> Tel. +49 551 39-27780<br/> Fax +49 551 39-27181 <br/> <a href="mailto:dekanat@math-cs.uni-goettingen.de">dekanat@math-cs.uni-goettingen.de</a> <a></a> </div> <div class="col-sm-6 col-md-3"> <h3>Social Media</h3> <ul id="social-buttons" class="social-icons-n list-unstyled"> <li> <a href="https://www.facebook.com/georgiaaugusta" class="facebook"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" class="social-icons-n"> <path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path> </svg> </a> </li> <li> <a href="https://www.instagram.com/unigoettingen/" class="instagram"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="social-icons-n"> <!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --> <path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path> </svg> </a> </li> <li> <a href="https://twitter.com/unigoettingen" class="twitter"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="social-icons-n"> <!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --> <path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path> </svg> </a> </li> <li> <a href="https://www.youtube.com/channel/UCzg-z2TL0Ks4Efz5o0z7AxQ" class="youtube"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" class="social-icons-n"> <!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --> <path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path> </svg> </a> </li> </ul> </div> <div class="clearfix visible-sm"></div> <div class="col-sm-6 col-md-4"> <h3>Online Services</h3> <ul class="list-unstyled"> <li><a href="https://ecampus.uni-goettingen.de/h1/pages/cs/sys/portal/subMenu.faces?navigationPosition=studiesOffered">Study programmes (eCampus)</a></li> <li><a href="https://ecampus.uni-goettingen.de/h1/pages/cs/sys/portal/subMenu.faces?navigationPosition=organisation">Organisation (eCampus)</a></li> <li><a href="/en/45574.html">Examination management (FlexNow)</a></li> <li><a href="https://studip.uni-goettingen.de/">Learning Management System (Stud.IP)</a></li> <li><a href="https://ecampus.uni-goettingen.de/">Studierendenportal (eCampus)</a></li> <li><a href="https://intern.uni-goettingen.de/">Intranet</a></li> <li><a href="/en/305223.html">Job announcements</a></li> <li><a href="https://www.stellenwerk-goettingen.de">Jobportal Stellenwerk</a></li> </ul> </div> <div class="col-sm-6 col-md-2"> <h3>Service</h3> <ol class="list-unstyled"> <li><a href="/en/439479.html">Data Privacy Statement</a></li> <li><a href="/en/545353.html">Contact</a></li> <li><a href="/en/100652.html">Important phone numbers</a></li> <li><a href="http://www.geodata.uni-goettingen.de/lageplan/">Campus Map</a></li> <li><a href="/en/627225.html">Site Info</a></li> </ol> </div> </div> </div> For more information on cookies, please see our privacy policy. <div id="cookie_banner_footer" class="cookie_banner_footer"> </b><b>Use of cookies</b><br> We use cookies to collect visitor statistics. The collected data is anonymized and will not be shared with third parties.<br> For more information on cookies, please see our <a href='/en/439479.html' target='_blank'><ins>privacy policy</ins>.<br></a> <button onclick="setMatomoOptIn()" type="button" id="btnCookieAll" class="btn btn-secondary normal_button" style="color: #181818; padding: 10px 15px; margin: 10px; width:320px; font-size: 15px; font-weight: 600;">Accept</button> <button onclick="deleteMatomoCookies()" type="button" id="btnCookieFunctions" class="btn btn-secondary ghost_button">Only accept necessary cookies</button> </div> <script type="text/javascript"> if(isCookieSet('matomo_optOut') || isCookieSet('matomo_optIn')) { hideCookieBanner(); } </script> </footer> </div> <!-- Ende Scrollable Area --> </section><!-- Ende Page Section --> </body>

Pages: 1 2 3 4 5 6 7 8 9 10