While students will learn at different paces, we believe that true education is a matter of development over time and within a stable community. At Great Hearts we give our students individualized attention, but always within a common, one-track curriculum. Please explore our reading lists and curriculum sequences.

Great Hearts middle school students take three years of Latin, write lyric odes to Grecian urns, and read Herodotus and Plutarch. High school students learn geometry directly from Euclid’s Elements, study painting, and by graduation have read more than 200 works of literature, including 100 poems, and performed in 25 concerts and plays, including two full theater productions.

Lincoln Prep Curriculum Overview
Classes / Year 6th 7th 8th 9th 10th 11th 12th
English Literature & Composition Humane Letters: American Tradition Humane Letters: Modern Europe Humane Letters: Ancient Greece Humane Letters: Rome to Modernity
History Intro to the American Tradition Ancient History Medieval History Humane Letters: American Tradition Humane Letters: Modern Europe Humane Letters: Ancient Greece American Rhetorical Tradition
Math – Version 1 Foundations of Mathematics Pre-Algebra Algebra I Geometry Algebra II / Pre-Calculus Calculus I Calculus II
Math – Version 2 Foundations of Mathematics Pre-Algebra Algebra I Geometry Algebra II / Pre-Calculus Calculus I Logic & Coding
Science Life Science Physical Science Earth Science Biology Chemistry Physics I Physics II
Foreign Language – Version 1 Latin I Latin II Latin III Latin IV Latin V Greek I Greek II
Foreign Language – Version 2 Latin I Latin II Latin III Mod. Lang. I Mod. Lang. II Mod. Lang. III Mod. Lang. IV
Fine Arts Music & Studio Art Music & Poetry Studio Art & Drama
Athletics Competitive Athletics Competitive Athletics
Other Economics Senior Thesis

function ResponsiveCellHeaders(elmID) {
try {
var THarray = [];
var table = document.getElementById(elmID);
var ths = table.getElementsByTagName(“th”);
for (var i = 0; i < ths.length; i++) {
var headingText = ths[i].innerHTML;
THarray.push(headingText);
}
var styleElm = document.createElement("style"),
styleSheet;
document.head.appendChild(styleElm);
styleSheet = styleElm.sheet;
for (var i = 0; i < THarray.length; i++) {
styleSheet.insertRule(
"#" +
elmID +
" td:nth-child(" +
(i + 1) +
')::before {content:"' +
THarray[i] +
': ";}',
styleSheet.cssRules.length
);
}
} catch (e) {
console.log("ResponsiveCellHeaders(): " + e);
}
}