<%inherit file="marketing.html" /> <%block name="title">MITx 6.002x: Circuits & Electronics</%block> <%block name="description">6.002x (Circuits and Electronics) is an experimental on-line adaptation of MIT's first undergraduate analog design course: 6.002.</%block> <%block name="keywords">MITx, circuits, electronics, EECS, electrical engineering, analog circuits, digital circuits, online learning, MIT, online laboratory, education, learners, undergraduate, certificate</%block> <%block name="header_text"> <section class="course"> <section> <h1>Circuits & Electronics</h1> <h2>6.002x</h2> <a class="enroll" rel="leanModal" href="#enroll"><noscript>In order to</noscript> Enroll in 6.002x Circuits <span>&</span> Electronics <noscript>you need to have javascript enabled</noscript></a> </section> <p>6.002x (Circuits and Electronics) is an experimental on-line adaptation of MIT’s first undergraduate analog design course: 6.002. This course is running, free of charge, for students worldwide from March 5, 2012 through June 8, 2012.</p> </section> </%block> <%block name="header_class">course</%block> <section class="index-content"> <section class="about-course"> <section class="about-info"> <h1>About 6.002x</h1> <p>6.002x (Circuits and Electronics) is designed to serve as a first course in an undergraduate electrical engineering (EE), or electrical engineering and computer science (EECS) curriculum. At MIT, 6.002 is in the core of department subjects required for all undergraduates in EECS.</p> <p>The course introduces engineering in the context of the lumped circuit abstraction. Topics covered include: resistive elements and networks; independent and dependent sources; switches and MOS transistors; digital abstraction; amplifiers; energy storage elements; dynamics of first- and second-order networks; design in the time and frequency domains; and analog and digital circuits and applications. Design and lab exercises are also significant components of the course. You should expect to spend approximately 10 hours per week on the course.</p> </section> <section class="on-mitx"> <h1>6.002x on <em>MITx</em></h1> <!-- Link doesn't need to be here, but there should be some way to get back to main MITx site --> <p>If you successfully complete the course, you will receive an electronic certificate of accomplishment from <em>MITx</em>. This certificate will indicate that you earned it from <em>MITx’s</em> pilot course. In this prototype version, <em>MITx</em> will not require that you be tested in a testing center or otherwise have your identity certified in order to receive this certificate.</p> <p>The course uses the textbook Foundations of Analog and Digital Electronic Circuits, by Anant Agarwal and Jeffrey H. Lang. Morgan Kaufmann Publishers, Elsevier, July 2005. While recommended, the book is not required: relevant sections will be provided electronically as part of the online course for personal use in connection with this course only. The copyright for the book is owned by Elsevier. The book can be purchased on <a href="http://www.amazon.com/exec/obidos/ASIN/1558607358/ref=nosim/mitopencourse-20" target="_blank">Amazon</a>.</p> </section> <section class="requirements"> <h1> Requirements </h1> <p>In order to succeed in this course, you must have taken an AP level physics course in electricity and magnetism. You must know basic calculus and linear algebra and have some background in differential equations. Since more advanced mathematics will not show up until the second half of the course, the first half of the course will include an optional remedial differential equations component for those who need it.</p> <p>The course web site was developed and tested primarily with Google Chrome. We support current versions of Mozilla Firefox as well. The video player is designed to work with Flash. While we provide a partial non-Flash fallback for the video, as well as partial support for Internet Explorer, other browsers, and tablets, portions of the functionality will be unavailable. </p> </section> <section class="cta"> <a class="enroll" rel="leanModal" href="#enroll"><noscript>In order to</noscript> Enroll in 6.002x Circuits & Electronics <noscript>you need to have javascript enabled</noscript></a> </section> </section> <section class="staff"> <h1>About the course staff</h1> <ul> <li> <img src="/static/staff/agarwal-mit-news-small.jpg" alt="Anant Agarwal"> <h2>Anant Agarwal</h2> <p>Director of MIT’s Computer Science and Artificial Intelligence Laboratory (CSAIL) and a professor of the Electrical Engineering and Computer Science department at MIT. His research focus is in parallel computer architectures and cloud software systems, and he is a founder of several successful startups, including Tilera, a company that produces scalable multicore processors. Prof. Agarwal won MIT’s Smullin and Jamieson prizes for teaching and co-authored the course textbook “Foundations of Analog and Digital Electronic Circuits.”</p></li> <li> <img src="/static/staff/gjs-small.jpg" alt="Gerald Sussman"> <h2>Gerald Sussman</h2> <p>Professor of Electrical Engineering at MIT. He is a well known educator in the computer science community, perhaps best known as the author of Structure and Interpretation of Computer Programs, which is universally acknowledged as one of the top ten textbooks in computer science, and as the creator of Scheme, a popular teaching language. His research spans a range of topics, from artificial intelligence, to physics and chaotic systems, to supercomputer design.</p></li> <li> <img src="/static/staff/pmitros-small.jpg" alt="Piotr Mitros"> <h2>Piotr Mitros</h2> <p>Research Scientist at MIT. His research focus is in finding ways to apply techniques from control systems to optimizing the learning process. Dr. Mitros has worked as an analog designer at Texas Instruments, Talking Lights, and most recently, designed the analog front end for a novel medical imaging modality for Rhythmia Medical.</p></li> </ul> </section> </section> <div id="enroll" class="leanModal_box" name="enroll"><%include file="create_account.html" /></div> <script> $(function() { // TODO: Clean up as per http://stackoverflow.com/questions/169506/obtain-form-input-fields-using-jquery /* Handles when the user hits 'enroll'. Grabs form data. Does AJAX. Either shows error, or shows success. */ $('form#enroll_form').submit(function(e) { e.preventDefault(); var submit_data={}; $.each($("[id^=ca_]"), function(index,value){ submit_data[value.name]=value.value; }); $.each($("[id^=cb_]"), function(index,value){ submit_data[value.name]=value.checked; }); postJSON('/create_account', submit_data, function(json) { if(json.success) { $('#enroll').html(json.value); } else { $('#enroll_error').html(json.value).stop().css("background-color", "#933").animate({ backgroundColor: "#333"}, 2000); } } ); }); /* Activate stupid spinner drop-downs in enrollment form */ var spinner_array=$("[id^=spinner_]"); spinner_array.each(function(i) { var s=spinner_array[i]; $("#"+s.id).click(function(){ $("#sregion"+s.id.substring(7)).toggle(); }); }) /*$("sregion"+$("[id^=spinner_]")[1].id.substring(7)) */ }); </script>