# Isaac Newton ## Microsim ### Live player <div class="microsim-player"> <iframe src="https://editor.p5js.org/sciencenibber/full/D73p5l-Pb" width="100%" height="620" frameborder="0" sandbox="allow-scripts allow-same-origin"></iframe> </div> <div class="microsim-fallback"> <img src="Microsims/thumbs/Isaac_Newton.png" alt="Isaac_Newton microsim poster" style="width:100%;border:1px solid #4445;border-radius:6px;"> <p><em>Live microsim (desktop) · <a href="https://editor.p5js.org/sciencenibber/sketches/D73p5l-Pb">open sketch in the p5.js editor</a></em></p> </div> **Editor URL:** https://editor.p5js.org/sciencenibber/sketches/D73p5l-Pb **Description (100 words):** A block of mass m rests on a frictionless track while a constant [[Force|force]] F pushes it. Newton's Second Law sets the acceleration, a = F/m, so the block speeds up steadily. As it travels a distance d, the force does work W = F*d, and that work appears entirely as kinetic energy, KE = (1/2)m*v^2. The two live readouts stay equal frame by frame — the Work-Energy Theorem in action. Drag the F and m sliders to see how a heavier block accelerates more slowly yet still banks exactly the energy the force supplies. Newton's dynamics, a century before "energy" had a name. ```js /* * ============================================================================ * Isaac Newton — Second Law of Motion & the Work-Energy Theorem * ============================================================================ * Article : Isaac Newton * Slug : Isaac_Newton * Wikitube: en.wikitube.io/wiki/Isaac_Newton * * Idea * ---- * A single block of mass m sits on a frictionless track. A constant force F * is applied. Newton's Second Law fixes the acceleration a = F / m; the block * speeds up, and the WORK done by the force, W = F * d, is converted entirely * into KINETIC ENERGY, KE = (1/2) * m * v^2. The two readouts track each other * exactly — that equality is the Work-Energy Theorem, and it is the bridge * from Newton's dynamics (F = m a) to the modern concept of energy. * * Newton (1642-1727) never used the word "energy"; that synthesis came a * century later (Young, Helmholtz, Joule). But every term in the energy * ledger is derivable from the three laws he set down in the Principia (1687). * * Canonical equations * ------------------- * F = m * a (Newton's Second Law) * W = F * d (work of a constant force) * KE = (1/2) * m * v^2 (kinetic energy) * W = dKE (Work-Energy Theorem) -> F*d = (1/2)m v^2 * * Parameters * ---------- * F applied force slider 1 .. 20 N default 5 * m block mass slider 1 .. 10 kg default 2 * Derived (live): a = F/m, v, d, KE, W. * * Notes: ASCII only inside every string/text() argument (editor wrapper * mishandles non-ASCII in string positions — see standards pitfalls.md). * ============================================================================ */ const ARTICLE = "Isaac_Newton"; // Friendly Error System off for ship: clean console, faster loop. p5.disableFriendlyErrors = true; // ---- Controls ------------------------------------------------------------- let forceSlider; // F, applied force in newtons let massSlider; // m, block mass in kilograms // ---- Layout constants (filled in setup from width/height) ----------------- let TRACK_Y; // y of the track surface let TRACK_X0; // left edge of the usable track (block start) let TRACK_X1; // right edge of the usable track (reset wall) const TRACK_METERS = 6.0; // physical length the track represents, in metres // ---- Simulation state ----------------------------------------------------- let d = 0; // distance travelled along the track, metres let v = 0; // current speed, metres / second let pxPerMeter = 1;// pixels per metre, derived in setup function setup() { // Canvas first, inside setup, at the house standard size. createCanvas(720, 520); pixelDensity(2); // crisp text/edges on retina displays // Layout band for the track and the reset wall. TRACK_Y = height * 0.62; TRACK_X0 = 70; TRACK_X1 = width - 70; pxPerMeter = (TRACK_X1 - TRACK_X0) / TRACK_METERS; // Force slider: 1..20 N, default 5, step 1. Range is the readable band for // a few-kg block crossing a 6 m track in a second or two. forceSlider = createSlider(1, 20, 5, 1); forceSlider.position(180, height - 64); forceSlider.style("width", "200px"); // Mass slider: 1..10 kg, default 2, step 1. massSlider = createSlider(1, 10, 2, 1); massSlider.position(180, height - 34); massSlider.style("width", "200px"); textFont("system-ui"); } function draw() { background(248); // ---- Read controls ----------------------------------------------------- const F = forceSlider.value(); // newtons const m = massSlider.value(); // kilograms const a = F / m; // Newton's Second Law: acceleration // ---- Integrate motion (semi-implicit Euler) ---------------------------- // dt clamped so a paused/backgrounded tab can't take a giant jump. const dt = Math.min(deltaTime / 1000, 0.05); v = v + a * dt; // v increases under constant a d = d + v * dt; // distance advances // Reset when the block reaches the far wall: restart the run from rest. if (d >= TRACK_METERS) { d = 0; v = 0; } // ---- Energy ledger ----------------------------------------------------- const KE = 0.5 * m * v * v; // kinetic energy, joules const W = F * d; // work done by the force so far, joules // ---- Reference geometry: the track ------------------------------------- stroke(60); strokeWeight(2); line(TRACK_X0, TRACK_Y, TRACK_X1, TRACK_Y); // the track surface // Metre ticks along the track. stroke(200); strokeWeight(1); for (let k = 0; k <= TRACK_METERS; k++) { const x = TRACK_X0 + k * pxPerMeter; line(x, TRACK_Y, x, TRACK_Y + 8); } // ---- Active geometry: the block + force arrow -------------------------- const blockX = TRACK_X0 + d * pxPerMeter; // block's leading edge const blockSize = 26 + 4 * m; // bigger mass = bigger box // The block. noStroke(); fill(40, 90, 200); rectMode(CENTER); rect(blockX, TRACK_Y - blockSize / 2, blockSize, blockSize, 4); // Force arrow (orange), length scaled by F, pointing in the travel direction. const arrowLen = 6 + F * 5; stroke(220, 130, 40); strokeWeight(4); const ax0 = blockX - blockSize / 2 - 6; const ax1 = ax0 - arrowLen; // points left-to-block line(ax1, TRACK_Y - blockSize / 2, ax0, TRACK_Y - blockSize / 2); noStroke(); fill(220, 130, 40); triangle(ax0, TRACK_Y - blockSize / 2, ax0 - 10, TRACK_Y - blockSize / 2 - 6, ax0 - 10, TRACK_Y - blockSize / 2 + 6); // ---- HUD: watermark, hints, readouts, equation ------------------------- drawHUD(F, m, a, v, d, KE, W); // ---- Slider labels (drawn on canvas, right-aligned to the strip) ------- noStroke(); fill(60); textSize(12); textAlign(RIGHT, CENTER); text("F (force, N)", 170, height - 56); text("m (mass, kg)", 170, height - 26); } // HUD per the Wikitube standard: title block, control hint, live readouts, // equation footer. ASCII only in every string. function drawHUD(F, m, a, v, d, KE, W) { noStroke(); // 2a. Top-left title block. fill(20); textSize(20); textAlign(LEFT, TOP); text("Isaac Newton - Second Law & Work-Energy Theorem", 16, 14); fill(110); textSize(12); text("Wikitube microsim - en.wikitube.io/wiki/" + ARTICLE, 16, 40); // 2b. Top-right control hints. fill(110); textSize(11); textAlign(RIGHT, TOP); text("sliders: F (force), m (mass)", width - 16, 14); text("a = F/m -> W = F*d builds KE = (1/2)m v^2", width - 16, 30); // 2c. Bottom-left live readouts in canonical symbols. textAlign(LEFT, TOP); textSize(13); fill(40, 90, 200); text("a = " + a.toFixed(2) + " m/s^2 v = " + v.toFixed(2) + " m/s d = " + d.toFixed(2) + " m", 16, 64); fill(20, 140, 70); text("KE = (1/2)m v^2 = " + KE.toFixed(1) + " J", 16, 86); fill(220, 130, 40); text("W = F * d = " + W.toFixed(1) + " J", 16, 106); // 2d. Bottom-right equation footer (single line, ASCII). fill(80); textSize(11); textAlign(RIGHT, BOTTOM); text("F = m*a W = F*d = (1/2)*m*v^2 = KE", width - 16, height - 8); } ``` ## Links (Wikipedia order) <!-- injected from _registry/childlinks/Isaac_Newton.json (2026-07-30T02:09:12Z) --> `1705_English_general_election` · `A._Rupert_Hall` · `A_Treatise_Concerning_the_Principles_of_Human_Knowledge` · `A_priori_and_a_posteriori` · `Aaron_Klug` · `Abraham_de_Moivre` · `Abraham_de_la_Pryme` · `Absolute_space_and_time` · `Abstract_and_concrete` · `Abstract_object_theory` · `Abu_Bakr_al-Razi` · `Action_principles` · `Action_theory_(philosophy)` · `Adam_Ferguson` · `Adam_Smith` · `Adam_Weishaupt` · `Adamantios_Korais` · `Adriaan_Koerbagh` · `Adrian_Smith_(statistician)` · `Agathodaemon_(alchemist)` · `Age_of_Earth` · [[Age_of_Enlightenment]] · `Al-Ghazali` · `Al-Jildaki` · `Al-Kindi` · `Al-Nijat` · `Al-Simawi` · `Al-Zahrawi` · `Albert_Einstein` · `Albert_Girard` · `Alchemical_Symbols_(Unicode_block)` · `Alchemical_symbol` · `Alchemy` · `Alchemy_in_art_and_entertainment` · `Alembic` · `Alessandro_Volta` · `Alexander_Baring,_1st_Baron_Ashburton` · `Alexander_Graham_Bell` · `Alexander_Pope` · `Alexander_Radishchev` · `Alexis_Clairaut` · `Alexius_Meinong` · `Alfred_North_Whitehead` · `Algernon_Sidney` · `Alkahest` · `Alphidius` · `Alvin_Plantinga` · `American_Enlightenment` · `Ampere` · `An_Historical_Account_of_Two_Notable_Corruptions_of_Scripture` · `Analytic–synthetic_distinction` · `Ancient_Greek` · `Anders_Celsius` · `Anders_Jonas_Ångström` · `Andreas_Libavius` · `Andrew_Huxley` · `André-Marie_Ampère` · `Andrés_Bello` · `Anglicanism` · `Angstrom` · `Anima_mundi` · `Anne,_Queen_of_Great_Britain` · `Anne_Robert_Jacques_Turgot` · `Anthony_Ashley-Cooper,_3rd_Earl_of_Shaftesbury` · `Anthony_Collins_(philosopher)` · `Anthony_Hammond_(politician)` · `Anthony_Storr` · `Anthony_Wagner` · `Anti-realism` · `Antiochus_Kantemir` · `Antoine_Lavoisier` · `Anton_Pann` · `Antonie_van_Leeuwenhoek` · `Antonio_Genovesi` · `Antony_Valentini` · `Apocalypse` · `Archbishop_of_Canterbury` · `Archibald_Geikie` · `Archimedes` · `Arianism` · `Aristotle` · `Arithmetica_Universalis` · `Arius` · `Arnaldus_de_Villa_Nova` · `Artephius` · `Arthur_Annesley,_5th_Earl_of_Anglesey` · `Arthur_Schopenhauer` · `Asoke_Nath_Mitra` · `Astigmatism_(optical_systems)` · `Astronomer` · `Astronomer_Royal` · `Astronomers_Monument` · `Astronomical_object` · `Astronomy` · `Atalanta_Fugiens` · `Athanasius_of_Alexandria` · `Athanor` · `Atheism` · `Atheism_during_the_Age_of_Enlightenment` · `Auguste_Comte` · `Aurora_consurgens` · `Austrian_Enlightenment` · `Averroes` · `Avicenna` · `Avram_Mrazović` · `Axial_precession` · `Azoth` · `BBC` · `BBC_News` · `BBC_News_(international_TV_channel)` · `Bachelor_of_Arts` · `Balthasar_Bekker` · `Bank_of_England` · [[Baron_d'Holbach]] · `Baruch_Spinoza` · `Bas_van_Fraassen` · `Basil_Valentine` · `Beam_expander` · `Becquerel` · `Being_and_Nothingness` · `Being_and_Time` · `Benito_Jerónimo_Feijóo_y_Montenegro` · `Benjamin_Franklin` · `Benjamin_Pulleyn` · `Bernard_Bolzano` · `Bernard_Le_Bovier_de_Fontenelle` · `Bernard_Mandeville` · `Bernard_Nieuwentyt` · `Bernard_Trevisan` · `Bernardo_de_Monteagudo` · `Bernhardus_Varenius` · `Bertrand_Russell` · `Bibliotheca_Chemica_Curiosa` · `Binomial_series` · `Binomial_theorem` · `Bipolar_coordinates` · `Black_body` · `Black_pudding` · `Blaise_Pascal` · `Boethius` · `Bonhams` · `Book_of_Genesis` · `Boyle's_law` · `Brachistochrone_curve` · `British_Interregnum` · `British_Library` · `Brogdale` · `Bubonic_plague` · `Buch_der_heiligen_Dreifaltigkeit` · `Bucket_argument` · `Buckworth-Herne-Soame_baronets` · `Burning_glass` · `Bézout's_theorem` · `C._D._Broad` · [[Calculus]] · [[Calculus_of_variations]] · `Cambridge_Platonists` · `Cambridge_University_Botanic_Garden` · `Cambridge_University_Library` · `Cambridge_University_Press` · `Cantabrigian` · `Cantong_qi` · `Capitalism` · `Carl_Benjamin_Boyer` · `Carl_Friedrich_Gauss` · `Carl_Gustav_Hempel` · `Carl_Jung` · `Cartesian_doubt` · `Catherine_Barton` · `Catherine_the_Great` · `Causal_closure` · `Causality` · `Celestial_mechanics` · `Celsius` · `Centimetre–gram–second_system_of_units` · `Centripetal_force` · `Cesare_Beccaria` · `Chancellor_of_the_Exchequer` · `Charles-Augustin_de_Coulomb` · `Charles_Babbage` · `Charles_Bathurst` · `Charles_Bonnet` · `Charles_Cadogan,_1st_Earl_Cadogan` · `Charles_Duncombe_(English_banker)` · `Charles_Hutton` · `Charles_III_of_Spain` · `Charles_II_of_England` · `Charles_Marie_de_La_Condamine` · `Charles_Montagu,_1st_Earl_of_Halifax` · `Charles_Perceval,_2nd_Baron_Arden` · `Charles_Sanders_Peirce` · `Charles_Scott_Sherrington` · `Charles_Scribner's_Sons` · `Chinese_alchemy` · [[Christiaan_Huygens]] · `Christian_Thomasius` · `Christian_Wolff_(philosopher)` · `Christian_Zionism` · `Christian_mysticism` · `Christmas` · `Christoph_Martin_Wieland` · `Christophe_Caloz` · `Christopher_Wren` · `Chromatic_aberration` · `Chronology_of_the_Bible` · `Chrysopoeia` · `Church_Fathers` · `Church_of_England` · `Chymes` · `Chymical_Wedding_of_Christian_Rosenkreutz` · `Civil_liberties` · `Classical_element` · `Classical_liberalism` · `Classical_mechanics` · `Classicism` · `Claude_Adrien_Helvétius` · `Cleopatra_the_Alchemist` · `Clifford_A._Pickover` · `Clifford_Truesdell` · `Coat_of_arms` · `Cogito,_ergo_sum` · `Coherentism` · `Colin_Pask` · `Color_theory` · `Comet` · `Commensurability_(philosophy_of_science)` · `Comptroller` · `Concept` · `Concluding_Unscientific_Postscript_to_Philosophical_Fragments` · `Confirmation_holism` · `Consilience` · `Construct_(philosophy)` · `Constructive_empiricism` · `Constructive_realism` · `Contextualism` · `Control_variable` · `Convection_(heat_transfer)` · `Conventionalism` · `Corpuscular_theory_of_light` · `Corpuscularianism` · `Correlation` · `Correlation_function` · `Cosmological_constant` · `Cosmology` · `Cosmos` · `Couette_flow` · `Coulomb` · `Counter-Enlightenment` · `Counterfeit_money` · `Cranbury_Park` · `Creative_synthesis` · `Critical_thinking` · `Criticism_of_science` · `Critique_of_Pure_Reason` · `Cubic_plane_curve` · `Curie_(unit)` · `Cyril_Wyche` · `Dalton_(unit)` · `Daniel_Gabriel_Fahrenheit` · `Daniel_Whitby` · `Dark_Enlightenment` · `Data` · `David_Brewster` · `David_Gregory_(mathematician)` · `David_Hume` · `David_Lewis_(philosopher)` · `David_Malet_Armstrong` · `Davies_Gilbert` · `De_Alchemia` · `De_analysi_per_aequationes_numero_terminorum_infinitas` · `De_motu_corporum_in_gyrum` · `De_rerum_natura` · `Death_mask` · `Debye` · `Deductive-nomological_model` · `Deism` · `Demarcation_problem` · `Democracy` · `Dendrochronology` · `Denis_Diderot` · `Denis_Fonvizin` · `Dependent_and_independent_variables` · `Derek_Parfit` · `Descriptive_research` · `Design_of_experiments` · `Determinism` · `Deutsches_Theatrum_Chemicum` · `Diego_de_Torres_Villarroel` · `Difference_quotient` · `Diffraction` · `Digestion_(alchemy)` · `Dimitrie_Cantemir` · `Dinicu_Golescu` · `Dirk_Jan_Struik` · `Dispersion_(optics)` · `Dispersive_prism` · `Dog_ears` · `Donald_Davidson_(philosopher)` · `Donald_M._Davis_(mathematician)` · `Dositej_Obradović` · `Dover_Publications` · `Dugald_Stewart` · `Duns_Scotus` · [[Dynamics_(mechanics)]] · `E._T._Whittaker` · `Earl_of_Portsmouth` · `Early_Christianity` · `Early_life_of_Isaac_Newton` · `Economics` · `Edmond_Halley` · `Edmund_Burke` · `Eduardo_Paolozzi` · `Edward_Andrade` · `Edward_Finch_(composer)` · `Edward_Gibbon` · `Edward_Sabine` · `Edward_Villiers_(Master_of_the_Mint)` · `Edward_Waring` · `Electromagnetic_spectrum` · `Electrostatic_generator` · `Elements_of_the_Philosophy_of_Newton` · `Elixir_of_life` · `Elkhonon_Goldberg` · `Embodied_cognition` · `Emerald_Tablet` · `Empirical_evidence` · `Empiricism` · `Enactivism` · `Encyclopédistes` · `English_law` · `Enlightened_absolutism` · `Enlightenment_philosophy` · `Enneads` · `Enthusiasm` · `Entity` · `Eotvos_(unit)` · `Epistemology` · `Epitaph` · `Eric_Temple_Bell` · `Ernest_Jones` · `Ernest_Rutherford` · `Essence` · `Essentialism` · `Eugenio_Espejo` · `Eugène_Canseliet` · `Eva_Germaine_Rimington_Taylor` · `Evangelista_Torricelli` · `Evidence-based_practice` · `Evolutionism` · `Exact_sciences` · `Existence` · `Existentialism` · [[Experience]] · `Experiment` · `Explanatory_power` · `F._J._Duarte` · `Fact` · `Fahrenheit` · `Faith_and_rationality` · `Fallibilism` · `Falsifiability` · `Fang_(alchemist)` · `Farad` · `Fasciculus_Chemicus` · `Fellow_of_the_Royal_Society` · `Feminist_metaphysics` · `Feminist_method` · `Ferdinando_Galiani` · `Fernando_Sanford` · `Finite_difference` · `Firmin_Abauzit` · `Fitzwilliam_Museum` · `Florian_Cajori` · `Flower_of_Kent` · `Fluid_mechanics` · `Fluxion` · `Foot-lambert` · [[Force]] · `Foundationalism` · `Foundations_of_Science` · `Founding_Fathers_of_the_United_States` · `Francesco_Mario_Pagano` · `Francis_Bacon` · `Francis_Hutcheson_(philosopher)` · `Francisco_Javier_Clavijero` · `Francisco_Suárez` · `Francisco_de_Miranda` · `François_Quesnay` · `Frater_Albertus` · `Frederick_Gowland_Hopkins` · `Free_will` · `French_Academy_of_Sciences` · `French_Enlightenment` · `Friedrich_Nietzsche` · `Friedrich_Schiller` · `Fritjof_Capra` · `Fulcanelli` · `Functional_contextualism` · `G._E._M._Anscombe` · `G._E._Moore` · `G._Waldo_Dunnington` · `Gabriel_Bonnot_de_Mably` · `Gal_(unit)` · `Galilean_moons` · `Galileo_Galilei` · `Gaspar_Melchor_de_Jovellanos` · `Gauss_(unit)` · `Gaussian_elimination` · `Gauss–Newton_algorithm` · `Ge_Hong` · `General_Scholium` · `Generalized_Gauss–Newton_method` · `Genius` · `Geographia_Generalis` · `Geography` · `Geology` · `Geometric_probability` · `Georg_Christoph_Lichtenberg` · `Georg_Ohm` · `Georg_Wilhelm_Friedrich_Hegel` · `George_Berkeley` · `George_Biddell_Airy` · `George_Eden,_1st_Earl_of_Auckland` · `George_F._Simmons` · `George_Herbert` · `George_Mason` · `George_Parker,_2nd_Earl_of_Macclesfield` · `George_Porter` · `George_Ripley_(alchemist)` · `George_Starkey` · `George_Tierney` · `George_Townshend,_2nd_Marquess_Townshend` · `Georges-Louis_Leclerc,_Comte_de_Buffon` · `Gerard_van_Swieten` · `Gerhard_Dorn` · `German_Enlightenment` · `Gheorghe_Șincai` · `Giambattista_Vico` · `Gilbert_(unit)` · `Gilbert_Ryle` · `Gilles_Deleuze` · `Giovanni_Mercurio_da_Correggio` · `Glass` · `God_in_Christianity` · `Godfrey_Kneller` · [[Gold]] · `Gold_standard` · `Goos–Hänchen_effect` · `Gottfried_Wilhelm_Leibniz` · `Gotthold_Ephraim_Lessing` · `Grantham` · `Grantham_Guildhall` · `Gravitational_constant` · [[Gravitational_field]] · `Gravity` · `Gray_(unit)` · `Great_Gonerby` · `Great_Plague_of_London` · `Great_Recoinage_of_1696` · `Guido_di_Montanor` · `Guillaume_Thomas_François_Raynal` · `Guillaume_de_l'Hôpital` · `Hanged,_drawn_and_quartered` · `Hannah_Ayscough` · `Hans_Christian_Ørsted` · `Hans_Reichenbach` · `Hans_Sloane` · `Hard_and_soft_science` · `Harmonic_series_(mathematics)` · `Harvard_University_Press` · `Haskalah` · `Heinrich_Gustav_Magnus` · `Heinrich_Hertz` · `Heinrich_Kayser` · `Heinrich_Khunrath` · `Heinrich_Mache` · `Heliocentrism` · `Hennig_Brand` · `Henri_Becquerel` · `Henri_Bergson` · `Henri_Poincaré` · `Henry_(unit)` · `Henry_Bathurst,_3rd_Earl_Bathurst` · `Henry_Boyle,_1st_Baron_Carleton` · `Henry_Hallett_Dale` · `Henry_Labouchere,_1st_Baron_Taunton` · `Henry_More` · `Henry_Slingsby_(Master_of_the_Mint)` · `Heresy` · `Herman_Goldstine` · `Hermann_Lotze` · `Hermes_Trismegistus` · `Hermeticism` · `Hertz` · `High_treason_in_the_United_Kingdom` · `Hilary_Putnam` · `Historic_England` · `History_and_philosophy_of_science` · `History_of_geography` · `Holy_orders` · `Home_counties` · `Homunculus` · `Hopton_Haynes` · `Horace_Bénédict_de_Saussure` · `House_of_Hanover` · `House_of_Lancaster` · `House_of_Plantagenet` · `House_of_Stuart` · `House_of_Tudor` · `House_of_York` · `Howard_Florey` · `Hugh_Blair` · `Hugh_Chisholm` · `Hugh_of_Evesham` · `Hugo_Grotius` · `Hugo_Kołłątaj` · `Human_rights` · `Humanism` · `Humphry_Davy` · `Huntington_Library` · `Hylozoism` · `Hypostatic_abstraction` · `Hypotheses_non_fingo` · `Hypothesis` · `Hypothetico-deductive_model` · `I._Bernard_Cohen` · `Ian_Hacking` · `Iatrochemistry` · `Ibn_Arfa'_Ra's` · `Ibn_Umayl` · `Ibn_Wahshiyya` · `Idea` · `Idealism` · `Identity_(philosophy)` · `Idolatry` · `Ienăchiță_Văcărescu` · `Ignacy_Krasicki` · `Ignoramus_et_ignorabimus` · `Immanuel_Kant` · `Impact_depth` · `Imperial_units` · `Importance` · `Imre_Lakatos` · `Inc._(magazine)` · `Indiana_University` · `Individualism` · `Inductionism` · [[Inductive_reasoning]] · `Industrial_Revolution` · `Inertia` · [[Information]] · `Inquiry` · `Insight` · `Institute_of_Physics` · `Instrumentalism` · `Intelligence` · `Intention` · `Internet_Archive` · `Interpolation` · `Interpretations_of_quantum_mechanics` · `Intertheoretic_reduction` · `Intestacy` · `Inverse-square_law` · `Ion_Budai-Deleanu` · `Isaac_Barrow` · `Isaac_Milner` · `Isaac_Newton's_occult_studies` · `Isaac_Newton_(disambiguation)` · `Isaac_Newton_Gargoyle` · `Isaac_Newton_Group_of_Telescopes` · `Isaac_Newton_Institute` · `Isaac_Newton_Medal` · `Isaac_Newton_Telescope` · `Isaac_Newton_in_popular_culture` · `Italian_Enlightenment` · `J._J._Thomson` · `Jabir_ibn_Hayyan` · `Jacob_Bernoulli` · `Jacques_Breyer` · `Jakob_Böhme` · `James_Abercromby,_1st_Baron_Dunfermline` · `James_Beattie_(poet)` · `James_Boswell` · `James_Burnett,_Lord_Monboddo` · `James_Burrow` · `James_Clerk_Maxwell` · `James_Douglas,_14th_Earl_of_Morton` · `James_Gleick` · `James_Harrington_(author)` · `James_Hutton` · `James_Jeans` · `James_Lighthill` · `James_Madison` · `James_Mill` · `James_Prescott_Joule` · `James_R._Newman` · `James_Stirling_(mathematician)` · `James_Watt` · `James_West_(antiquary)` · `Jan_Baptist_van_Helmont` · `Jan_Swammerdam` · `Jean-Baptiste_Biot` · `Jean-Jacques_Burlamaqui` · `Jean-Jacques_Rousseau` · `Jean-Paul_Sartre` · `Jean_Baudrillard` · `Jean_Léonard_Marie_Poiseuille` · `Jean_Meslier` · `Jean_de_Roquetaillade` · `Jeremy_Bentham` · `Jermyn_Street` · `Jesus` · `Johann_Bernoulli` · `Johann_Gottfried_Herder` · `Johann_Heinrich_Lambert` · `Johann_Jakob_Brucker` · `Johann_Rudolf_Glauber` · `Johann_Wolfgang_von_Goethe` · `Johann_of_Laz` · `Johannine_Comma` · `John_Charles_Herries` · `John_Collins_(mathematician)` · `John_Colson` · `John_Conduitt` · `John_Dalton` · `John_Dastin` · `John_Dee` · `John_Dollond` · `John_Flamsteed` · `John_Gribbin` · `John_Hadley` · `John_Herschel` · `John_Keble` · `John_Keill` · `John_Locke` · `John_Lonyson` · `John_Machin` · `John_Maynard_Keynes` · `John_Michael_Rysbrack` · `John_Mill_(theologian)` · `John_Milton` · `John_Napier` · `John_Playfair` · `John_Smyth_(1748–1811)` · `John_Somers,_1st_Baron_Somers` · `John_Toland` · `John_Vanderbank` · `John_Vaughan,_3rd_Earl_of_Carbery` · `John_William_Strutt,_3rd_Baron_Rayleigh` · `John_Wrottesley,_2nd_Baron_Wrottesley` · `John_York_(Master_of_the_Mint)` · `Jonathan_Swift` · `Joseph_Addison` · `Joseph_Banks` · `Joseph_Black` · `Joseph_Dalton_Hooker` · `Joseph_Fourier` · `Joseph_Henry` · `Joseph_Larmor` · `Joseph_Lister` · `Joseph_Priestley` · `Joseph_Williamson_(English_politician)` · `Joseph_von_Sonnenfels` · `Joshua_King_(mathematician)` · `Joshua_Reynolds` · [[Josiah_Willard_Gibbs]] · `José_Baquíjano_y_Carrillo,_Count_of_Vistaflorida` · `José_Cadalso` · `José_Gaspar_Rodríguez_de_Francia` · `José_Gervasio_Artigas` · `Joule` · `Julian_Ursyn_Niemcewicz` · `Julian_calendar` · `Julien_Offray_de_La_Mettrie` · [[Jupiter]] · `Justice_of_the_peace` · `Józef_Wybicki` · `Jędrzej_Śniadecki` · `Karl_Pearson` · `Karl_Popper` · `Karl_von_Zinzendorf` · `Kelvin` · `Kensington` · `Kepler's_laws_of_planetary_motion` · `Khalid_ibn_Yazid` · `Kissing_number` · `Knight` · `Knight_Bachelor` · `Lambert_(unit)` · `Lance_Morrow` · `Langley_(unit)` · `Laozi` · `Larry_Laudan` · `Laser_linewidth` · `Later_life_of_Isaac_Newton` · `Latin` · `Latitudinarian` · `Leandro_Fernández_de_Moratín` · `Least_squares` · `Leibniz–Newton_calculus_controversy` · `Lev_Landau` · `Leyden_papyrus_X` · `Liber_Ignium` · `Liber_de_compositione_alchemiae` · `Libertarianism_(metaphysics)` · `Liberty` · `Liberté,_égalité,_fraternité` · `LibriVox` · `Limit_(mathematics)` · `Lincolnshire` · `Linear_polarization` · `Linear_regression` · `List_of_alchemical_substances` · `List_of_alchemists` · `List_of_chemical_elements_named_after_people` · `List_of_fellows_of_the_Royal_Society_elected_in_1672` · `List_of_highest_astronomical_observatories` · `List_of_metaphysicians` · `List_of_multiple_discoveries` · `List_of_philosophers_of_science` · `List_of_presidents_of_the_Royal_Society` · `List_of_scientists_whose_names_are_used_as_units` · `List_of_scientists_whose_names_are_used_in_physical_constants` · `List_of_things_named_after_Isaac_Newton` · `Listed_building` · `Lodewijk_Meyer` · `Lord_Chancellor` · `Lord_Charles_Spencer` · `Lord_Kelvin` · `Lords_Commissioners_of_the_Treasury` · `Loránd_Eötvös` · `Louis_Harold_Gray` · `Louis_de_Jaucourt` · `Lucasian_Professor_of_Mathematics` · `Lucretius` · `Ludwig_Boltzmann` · `Ludwig_Wittgenstein` · `Luigi_Galvani` · `Luminiferous_aether` · `Lunar_theory` · `Mache_(unit)` · `Magical_thinking` · `Magister_Salernus` · `Magnum_opus_(alchemy)` · `Magnus_effect` · `Manuel_Belgrano` · `Mappae_clavicula` · `Mariano_Moreno` · `Marie_Curie` · `Marquis_de_Condorcet` · `Marquis_de_Sade` · `Martin_Bowes` · `Martin_Folkes` · `Martin_Heidegger` · `Mary_Anne_Atwood` · `Mary_Wollstonecraft` · `Mary_the_Jewess` · `Master_Geng` · `Master_of_Arts` · `Master_of_the_Mint` · `Materialism` · `Mathematical_notation` · `Mathematical_proof` · `Mathematical_sciences` · `Mathematics` · `Matthew_Tindal` · `Maxwell_(unit)` · `Meaning_(existential)` · `Meaning_of_life` · `Measurement` · `Meditations_on_First_Philosophy` · `Mental_representation` · [[Mercury_(element)]] · `Mercury_poisoning` · [[Mereology]] · `Meta_(prefix)` · [[Metallurgy]] · `Metaphysical_necessity` · `Metaphysics` · `Metaphysics_(Aristotle)` · `Method_of_Fluxions` · `Metrology` · `Michael_Atiyah` · `Michael_Cates` · `Michael_Dummett` · `Michael_Faraday` · `Michael_Green_(physicist)` · `Michael_Maier` · `Michael_Polanyi` · `Michael_R._Matthews` · `Michael_Scot` · `Michael_Sendivogius` · `Michael_White_(author)` · `Midlands_Enlightenment` · `Miguel_Hidalgo_y_Costilla` · `Mikhail_Kheraskov` · `Mikhail_Lomonosov` · `Mill's_methods` · `Mind` · `Mind–body_dualism` · `Minimum_deviation` · `Mining` · `Model-dependent_realism` · `Modern_Greek_Enlightenment` · `Modernity` · `Monadology` · `Monism` · `Montesquieu` · `Monticello` · `Moses_Mendelssohn` · `Moses_of_Alexandria` · `Motion` · `Mozi` · `Multiple-prism_dispersion_theory` · `Musaeum_Hermeticum` · `Mutus_Liber` · `Napoleon` · `National_Fruit_Collection` · `National_Heritage_List_for_England` · `National_Library_of_Israel` · `National_Portrait_Gallery,_London` · `National_Trust` · `Natural_philosophy` · `Naturalism_(philosophy)` · `Nature_(philosophy)` · `Neil_deGrasse_Tyson` · `Neper` · `New_Scientist` · `New_Testament` · `Newton's_cannonball` · `Newton's_cradle` · `Newton's_identities` · `Newton's_inequalities` · `Newton's_law_of_cooling` · `Newton's_law_of_universal_gravitation` · [[Newton's_laws_of_motion]] · `Newton's_metal` · `Newton's_method` · `Newton's_method_in_optimization` · `Newton's_minimal_resistance_problem` · `Newton's_reflector` · `Newton's_rings` · `Newton's_theorem_about_ovals` · `Newton's_theorem_of_revolving_orbits` · `Newton_(Blake)` · `Newton_(Paolozzi)` · `Newton_(unit)` · `Newton_International_Fellowship` · `Newton_Project` · `Newton_disc` · `Newton_fractal` · `Newton_line` · `Newton_polygon` · `Newton_polynomial` · `Newton_scale` · `Newtonian_dynamics` · `Newtonian_fluid` · `Newtonian_potential` · `Newtonian_telescope` · `Newtonianism` · `Newton–Cartan_theory` · `Newton–Cotes_formulas` · `Newton–Euler_equations` · `Newton–Gauss_line` · `Newton–Okounkov_body` · `Newton–Pepys_problem` · `Nicene_Creed` · `Nicholas_Saunderson` · `Nicolas_Chamfort` · `Nicolas_Fatio_de_Duillier` · `Nicolas_Malebranche` · `Nihilism` · `Nikola_Tesla` · `Nikolay_Novikov` · `Non-science` · `Normative_science` · `Notes_on_the_Jewish_Temple` · `Nuclear_weapon` · `Null_hypothesis` · [[Numerical_integration]] · `Numismatics` · `Nyāya_Sūtras` · `Objective_(optics)` · `Observation` · `Occult` · `Octant_(instrument)` · `Oersted` · `Ofer_Lahav` · `Ohm` · `Old_Style_and_New_Style_dates` · `Olympe_de_Gouges` · `Olympiodorus_the_Younger` · [[Ontology]] · `Optical_phenomenon` · `Opticks` · `Optics` · `Ordinary_least_squares` · `Ortolanus` · `Ostanes` · `Otto_Neurath` · `Otto_von_Guericke` · `Ouroboros` · `Outline_of_physical_science` · `Oxford_University_Museum_of_Natural_History` · `Oxford_University_Press` · `P._F._Strawson` · `Pantheism` · `Paphnutia_the_Virgin` · `Papyrus_Graecus_Holmiensis` · `Paracelsianism` · `Paracelsus` · `Paradigm` · `Parallelogram_law` · `Parallelogram_of_force` · `Parameterized_post-Newtonian_formalism` · `Parliament_of_England` · `Parmenides` · `Pascal_(unit)` · `Patricia_Fara` · `Patrick_Blackett` · `Patristics` · `Pattern` · `Paul_Dirac` · `Paul_Feyerabend` · `Paul_Nurse` · `Paul_of_Taranto` · `Pedro_Pablo_Abarca_de_Bolea,_10th_Count_of_Aranda` · `Perception` · `Peter_Debye` · `Petru_Maior` · `Petrus_Bonus` · `Phases_of_Venus` · `Phenomenalism` · `Phenomenology_(philosophy)` · `Philip_Stanhope,_5th_Earl_of_Chesterfield` · `Philosopher's_stone` · `Philosophical_Transactions_of_the_Royal_Society` · `Philosophical_analysis` · `Philosophical_realism` · `Philosophiæ_Naturalis_Principia_Mathematica` · `Philosophy_of_archaeology` · `Philosophy_of_biology` · `Philosophy_of_chemistry` · `Philosophy_of_geography` · `Philosophy_of_history` · `Philosophy_of_linguistics` · `Philosophy_of_matter` · `Philosophy_of_mind` · `Philosophy_of_physics` · `Philosophy_of_psychology` · [[Philosophy_of_science]] · `Philosophy_of_self` · `Philosophy_of_social_science` · `Philosophy_of_space_and_time` · `Physical_object` · `Physicalism` · [[Physics]] · `Picatrix` · `Pierre-Jean_Fabre` · `Pierre-Simon_Laplace` · `Pierre_Bayle` · `Pierre_Curie` · `Pierre_Duhem` · `Pieter_de_la_Court` · `Pietro_Verri` · `Pill_of_Immortality` · `Plato` · `Plotinus` · `Poise_(unit)` · `Polar_coordinate_system` · `Polish_Enlightenment` · `Polymath` · `Portrait_of_Benjamin_Franklin` · `Portrait_of_Isaac_Newton` · `Positivism` · `Post-Newtonian_expansion` · `Power_number` · `Power_series` · `Pragmatism` · `President_of_the_United_States` · `Prima_materia` · `Prince_Augustus_Frederick,_Duke_of_Sussex` · `Princeton_University_Press` · `Principle` · [[Probability]] · `Problem_of_Apollonius` · `Problem_of_induction` · `Proclus` · `Progressivism` · `Project_Gutenberg` · `Projective_plane` · `Prolegomena_to_Any_Future_Metaphysics` · [[Property_(philosophy)]] · `Protoscience` · `Pseudo-Albertus` · `Pseudo-Democritus` · `Pseudo-Geber` · `Pseudoscience` · `Psychology` · `Puiseux_series` · `Quaestiones_quaedam_philosophicae` · `Qualia` · `Quality_(philosophy)` · [[Quantum_mechanics]] · `Quart` · `Questionable_cause` · `R._G._Collingwood` · `Ralph_Freeman_(lawyer)` · `Ramon_Llull` · `Ranjan_Roy` · `Rankine_scale` · `Rarefaction` · `Rationalism` · `Rationality` · `Rayl` · `Real_tennis` · `Reality` · `Reason` · `Rebis` · `Received_view_of_theories` · `Reductionism` · `Reflection_(physics)` · `Refracting_telescope` · `Refraction` · `Relativism` · `Religious_views_of_Isaac_Newton` · `René_Antoine_Ferchault_de_Réaumur` · `René_Descartes` · `Research` · `Rhetoric_of_science` · `Rice_University` · `Richard_Arundell_(died_1758)` · `Richard_Baron_(dissenting_minister)` · `Richard_Bentley` · `Richard_Feynman` · `Richard_Lalor_Sheil` · `Richard_Martin_(lord_mayor_of_London)` · `Richard_Mead` · `Richard_Price` · `Richard_S._Westfall` · `Richard_Trench,_2nd_Earl_of_Clancarty` · `Richard_de_Villamil` · `Rigas_Feraios` · `Robert_Boyle` · `Robert_Brackenbury` · `Robert_Brady_(writer)` · `Robert_Burns` · `Robert_Harley_(1579–1656)` · `Robert_Hooke` · `Robert_Jenkinson,_2nd_Earl_of_Liverpool` · `Robert_Lucas,_3rd_Baron_Lucas_of_Shenfield` · `Robert_May,_Baron_May_of_Oxford` · `Robert_Rynasiewicz` · `Robert_Woodhouse` · `Robyn_Arianrhod` · `Roentgen_(unit)` · `Roger_Bacon` · `Roger_Cotes` · `Roger_Penrose` · `Rolf_Maximilian_Sievert` · `Rosary_of_the_Philosophers` · `Rotating_spheres` · `Royal_Mint` · `Royal_Society` · `Rudolf_Carnap` · `Russian_Enlightenment` · `Réaumur_scale` · `SI_derived_unit` · `Salomon_Bochner` · `Salomon_Trismosin` · `Samuel_Clarke` · `Samuel_Johnson` · `Samuel_Langley` · `Samuel_Norton_(alchemist)` · `Samuel_Pepys` · `Samuel_von_Pufendorf` · `Samuil_Micu-Klein` · `Sapere_aude` · `Sarcophagus` · `Saturn` · `Saul_Kripke` · `Schrödinger–Newton_equation` · `Science_studies` · `Scientific_Revolution` · `Scientific_essentialism` · `Scientific_evidence` · `Scientific_formalism` · `Scientific_law` · `Scientific_method` · `Scientific_pluralism` · `Scientific_realism` · `Scientific_skepticism` · `Scientific_theory` · `Scientism` · `Scott_Berkun` · `Scottish_Enlightenment` · `Scripta_Mathematica` · `Sebastião_José_de_Carvalho_e_Melo,_1st_Marquis_of_Pombal` · `Secretum_Secretorum` · `Self` · `Semantic_view_of_theories` · `Series_(mathematics)` · `Shell_theorem` · `Siemens_(unit)` · `Sievert` · `Silver_standard` · `Simon_Stevin` · `Simulacra_and_Simulation` · `Simón_Bolívar` · `Sin` · `Sinecure` · `Sir_Benjamin_Collins_Brodie,_1st_Baronet` · `Sir_George_Clerk,_6th_Baronet` · `Sir_George_Stokes,_1st_Baronet` · `Sir_George_Yonge,_5th_Baronet` · `Sir_Isaac_Newton_Sixth_Form` · `Sir_John_Hoskyns,_2nd_Baronet` · `Sir_John_Stanley,_1st_Baronet` · `Sir_Thomas_Aylesbury,_1st_Baronet` · `Sizar` · `Slate` · `Smithsonian_Institution` · `Social_order` · `Sociology` · `Sociology_of_scientific_ignorance` · `Sociology_of_scientific_knowledge` · `Solar_System` · `Solar_mass` · `Solipsism` · `Sophia_Charlotte_of_Hanover` · `Sophist_(dialogue)` · `Sotheby's` · `Soul` · `South_Sea_Company` · `Spanish_American_Enlightenment` · `Spanish_Enlightenment` · `Spectrum` · `Speculum_metal` · `Speed_of_light` · `Speed_of_sound` · `Spelling_alphabet` · `Spencer_Compton,_2nd_Marquess_of_Northampton` · `Spheroid` · `Spiritualism_(philosophy)` · `Splendor_Solis` · `Standing_on_the_shoulders_of_giants` · `Stanford_Encyclopedia_of_Philosophy` · `Stanisław_August_Poniatowski` · `Stanisław_Konarski` · `Stanisław_Staszic` · `Statal_Institute_of_Higher_Education_Isaac_Newton` · `State_funeral` · `State_funerals_in_the_United_Kingdom` · `Stathis_Psillos` · `Stephanus_of_Alexandria` · `Stephen_Hawking` · `Stephen_Snobelen` · `Stephen_Stigler` · `Stereology` · `Steven_Weinberg` · `Structural_coloration` · `Structuralism_(philosophy_of_science)` · `Stuart_Restoration` · `Subject_and_object_(philosophy)` · `Subjectivism` · `Subrahmanyan_Chandrasekhar` · `Substance_theory` · `Substantial_form` · [[Sulfur]] · [[Sun]] · `Sundial` · `Suns_in_alchemy` · `Superfluidity` · `Superstition` · `Suspicions_about_the_Hidden_Realities_of_the_Air` · `Sylvain_Maréchal` · `Synesius` · `Søren_Kierkegaard` · `Table_of_Newtonian_series` · `Taddeo_Alderotti` · `Takwin` · `Tatsuo_Itoh` · `Taylor_series` · `Teleology` · `Tesla_(unit)` · `Testability` · `Textual_criticism` · `The_American_Genealogist` · `The_Chronology_of_Ancient_Kingdoms_Amended` · `The_King's_School,_Grantham` · `The_London_Gazette` · `The_Mirror_of_Alchimy` · `The_Nabataean_Agriculture` · `The_National_Archives_(United_Kingdom)` · `The_Phenomenology_of_Spirit` · `The_Times` · `The_Twelve_Keys_of_Basil_Valentine` · `The_World_as_Will_and_Representation` · `Theatrum_Chemicum` · `Theatrum_Chemicum_Britannicum` · `Theoklitos_Farmakidis` · `Theology` · `Theophilos_Kairis` · `Theoretical_physics` · `Theory` · `Theory-ladenness` · `Theory_choice` · `Theory_of_forms` · `Theory_of_relativity` · `Thirty-nine_Articles` · `Thomas_Aquinas` · `Thomas_Burnet_(theologian)` · `Thomas_Egerton_(mercer)` · `Thomas_Graham_(chemist)` · `Thomas_Henry_Huxley` · `Thomas_Herbert,_8th_Earl_of_Pembroke` · `Thomas_Howard,_3rd_Earl_of_Effingham` · `Thomas_Jefferson` · `Thomas_Kuhn` · `Thomas_Neale` · `Thomas_Norton_(alchemist)` · `Thomas_Paine` · `Thomas_Reid` · `Thomas_Stanley_(Royal_Mint)` · `Thomas_Street_(astronomer)` · `Thomas_Tenison` · `Thomas_Turton` · `Thomas_Vaughan_(philosopher)` · `Thomas_Wallace,_1st_Baron_Wallace` · `Thomas_Young_(scientist)` · `Thomson_(unit)` · `Thought` · `Thought_experiment` · `Three-body_problem` · `Tide` · `Timaeus_(dialogue)` · `Time` · `Time_(magazine)` · `Time_Person_of_the_Year` · `Time_and_motion_study` · `Tobias_Mayer` · `Tom_Whiteside` · `Torr` · `Total_internal_reflection` · `Traité_de_mécanique_céleste` · `Trajectory` · `Trial_of_the_Pyx` · `Trinity` · `Trinity_College,_Cambridge` · `Tripus_Aureus` · `Truncated_Newton_method` · `Truth` · `Truthmaker_theory` · `Tunable_laser` · `Turba_Philosophorum` · `Twinkling` · `Two-body_problem` · `Type_theory` · `Type–token_distinction` · `UNESCO` · `Underdetermination` · `Unification_of_theories_in_physics` · `Uniformitarianism` · `United_States_customary_units` · `Unity_of_science` · `Universal_(metaphysics)` · `Universal_language` · `University_of_California_Press` · `University_of_Cambridge` · `University_of_Oxford` · `Unobservable` · `Valet` · `Value_(ethics)` · `Variable_(mathematics)` · `Variable_and_attribute_(research)` · `Varsity_(Cambridge)` · `Vector_(mathematics_and_physics)` · `Vector_calculus` · `Venki_Ramakrishnan` · [[Venus]] · `Verificationism` · [[Vilfredo_Pareto]] · `Visible_spectrum` · `Vitalism` · `Vitrification` · `Vladimir_Arnold` · `Volt` · `Voltaire` · `W._W._Rouse_Ball` · `Warden_of_the_Mint` · `Watt` · [[Wayback_Machine]] · `Weber_(unit)` · `Wei_Boyang` · `Werner_Heisenberg` · `Werner_von_Siemens` · `Westminster_Abbey` · `Whigs_(British_political_party)` · `Wilhelm_Eduard_Weber` · `Wilhelm_Homberg` · `Wilhelm_Röntgen` · `Wilhelm_Windelband` · `Wilhelm_von_Humboldt` · `Willard_Van_Orman_Quine` · `William_Blake` · `William_Blake_Archive` · `William_Blount,_4th_Baron_Mountjoy` · `William_Briggs_(physician)` · `William_Brouncker,_2nd_Viscount_Brouncker` · `William_Chaloner` · `William_Chetwynd,_3rd_Viscount_Chetwynd` · `William_Clarke_(apothecary)` · `William_Crookes` · `William_Cullen` · `William_Derham` · `William_Ewart_Gladstone` · `William_Gilbert_(physicist)` · `William_Godwin` · `William_Hastings,_1st_Baron_Hastings` · `William_Henry_Bragg` · `William_Huggins` · `William_Hyde_Wollaston` · `William_III_of_England` · `William_Jones_(mathematician)` · `William_Kent` · `William_Parsons,_3rd_Earl_of_Rosse` · `William_R._Newman` · `William_Spottiswoode` · `William_Stukeley` · `William_Wellesley-Pole,_3rd_Earl_of_Mornington` · `William_Whiston` · `Winchester` · `Wind_tunnel` · `Winston_Churchill` · `Woolsthorpe-by-Colsterworth` · `Woolsthorpe_Manor` · `Wren_Library` · `XMM-Newton` · `Yekaterina_Vorontsova-Dashkova` · `Yliaster` · `Zero_of_a_function` · `Zosimos_of_Panopolis` · `Émilie_du_Châtelet` · `Étienne-Gabriel_Morelly` · `Étienne_Bonnot_de_Condillac` ## From the Real GENERATIVE library ![Isaac Newton](https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Portrait_of_Sir_Isaac_Newton%2C_1689_%28brightened%29.jpg/220px-Portrait_of_Sir_Isaac_Newton%2C_1689_%28brightened%29.jpg) *Isaac Newton — placed from the Real G.E.N.E.R.A.T.I.V.E. course library (STEM and Music room). Source: Wikimedia Commons (via Wikipedia article media). [Details & license](https://commons.wikimedia.org/wiki/File:Portrait_of_Sir_Isaac_Newton%2C_1689_%28brightened%29.jpg).* > Sir Isaac Newton FRS (25 December 1642 – 20 March 1726/27[a]) was an English polymath active as a mathematician, physicist, astronomer, alchemist, theologian, and author who was described in his time as a natural philosopher.[7] He was a key figure in the Scientific Revolution and the Enlightenment that followed. His pioneering book Philosophiæ Naturalis Pri ([Wikipedia](https://en.wikipedia.org/wiki/Isaac_Newton)) <!-- REAL-GENERATIVE-MEDIA:END --> <!-- LOCAL-MEDIA-PASS:START --> ## From the vault media library !Isaac Newton thumb.png *Isaac Newton — from the vault's own media holdings, placed 2026-07-09. MTN / Wikitube.io original · CC BY-SA 4.0.* <!-- LOCAL-MEDIA-PASS:END --> > **Room:** [[Energy]] · **Status:** ✅ shipped ## Overview Sir Isaac Newton FRS (25 December 1642– 20 March 1726/27a) was an English polymath active as a mathematician, physicist, astronomer, alchemist, theologian, and author who was described in his time as a natural philosopher.7 He was a key figure in the Scientific Revolution and the Enlightenment that followed. His pioneering book Philosophiæ Naturalis Principia Mathematica (Mathematical Principles of Natural Philosophy), first published in 1687, consolidated many previous results and established classical mechanics.89 Newton also made seminal contributions to optics, and shares credit with German mathematician Gottfried Wilhelm Leibniz for formulating infinitesimal calculus, though he developed calculus years before Leibniz.1011 _(Overview is shorter than 200 words; the pipeline should expand it from textbook context before publishing.)_ ## See also - Room hub: [[Energy]] - p5.js Editor conventions: P5 JS EDITOR - Wiki root: MAIN --- *Scaffolded by `generative-microsim` from row 14 of the Energy sheet on 2026-06-03T17:50:11Z.* <!-- REAL-GENERATIVE-MEDIA:START --> <!-- CRAFT-LINK:START g12 --> *Built to the [[WT!P5_js_Microsim_Master_Class|p5.js Master Class]].* <!-- CRAFT-LINK:END --> ## Wikipedia : Wikitube **Strict pair:** [Wikipedia](https://en.wikipedia.org/wiki/Isaac_Newton) : [Wikitube](https://en.wikitube.io/wiki/Isaac_Newton) ## Previous hub tags Tree parents: [[Phase_space]] · [[Systems_theory]]. Legacy hubs: `GENERATIVE`. --- *Sources: 3 legacy notes. Minted wave 1, 2026-07-30 (v1.6 order).*