'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Ptolemy

Claudius Ptolemy (/ˈtɒləmi/; Greek: Κλαύδιος Πτολεμαῖος, Klaúdios Ptolemaîos, [kláwdios ptolɛmɛ́ːos]; Latin: Claudius Ptolemaeus; c. AD 100 – c.170) was a Greco-Egyptian writer, known as a mathematician, astronomer, geographer, astrologer, and poet of a single epigram in the Greek Anthology. He lived in the city of Alexandria in the Roman province of Egypt, wrote in Koine Greek, and held Roman citizenship. Beyond that, few reliable details of his life are known. His birthplace has been given as Ptolemais Hermiou in the Thebaid in an uncorroborated statement by the 14th-century astronomer Theodore Meliteniotes. This is a very late attestation, however, and there is no other reason to suppose that he ever lived anywhere else than Alexandria, where he died around AD 168.

Ptolemy was the author of several scientific treatises, three of which were of continuing importance to later Byzantine, Islamic and European science. The first is the astronomical treatise now known as the Almagest, although it was originally entitled the "Mathematical Treatise" (Μαθηματικὴ Σύνταξις, Mathēmatikē Syntaxis) and then known as the "Great Treatise" (Ἡ Μεγάλη Σύνταξις, Ē Megálē Syntaxis). The second is the Geography, which is a thorough discussion of the geographic knowledge of the Greco-Roman world. This manuscript was used by Christopher Columbus as the map for his westward-bound path to Asia, in which he discovered the hitherto unknown lands of the Americas. The third is the astrological treatise in which he attempted to adapt horoscopic astrology to the Aristotelian natural philosophy of his day. This is sometimes known as the Apotelesmatika (Ἀποτελεσματικά) but more commonly known as the Tetrabiblos from the Greek (Τετράβιβλος) meaning "Four Books" or by the Latin Quadripartitum.

Ptolemy (general)

Ptolemy (Greek: Πτολεμαῖος); died 309 BC) was a nephew of Antigonus, and who served as a general to Alexander the Great (338323 BC) who afterwards became king of Asia.

He is first mentioned as being present with his uncle at the siege of Nora in 320 BC, when he was given up to Eumenes as a hostage for the safety of the latter during a conference with Antigonus. At a later period we find him entrusted by his uncle with commands of importance. Thus in 315 BC, when Antigonus was preparing to oppose the formidable coalition organized against him, he placed Ptolemy at the head of the army which was destined to carry on operations in Anatolia against the generals of Cassander.

The young general successfully carried out his mission, thereby relieving Amisus, which was besieged by Asclepiodorus, and recovered the whole satrapy of Cappadocia; after which he advanced into Bithynia, compelling king Zipoites to join his alliance. Upon his approach and occupation of Ionia, Seleucus withdrew from that territory.

Ptolemy (son of Mennaeus)

Ptolemy or Ptolemaeus (Greek: Πτολεμαῖος), son of Mennaeus (Mennæus) was tetrarch of Iturea and Chalcis from about 85 BC to 40 BC, in which year he died. He tried to extend his kingdom by warlike expeditions (Strabo, xvi. 2, § 10); and ruled the Lebanon, threatened Damascus, subjugated several districts on the Phoenician coast, and once had Paneas in his hands (Josephus, Ant. xv. 10, §§ 1-3). In fact, the whole of Galilee had formerly been in the possession of the Itureans, and had been taken away from them in 103 BC by Aristobulus I. (ibid. xiii. 11, § 3).

The Jews thought themselves oppressed by Ptolemy, and hence Aristobulus II, at that time still prince and sent by his mother, Alexandra, undertook an expedition against Damascus to protect it against Ptolemy (ibid. 16, § 3; idem, B. J. i. 5, § 3). Pompey destroyed Ptolemy's strongholds in the Lebanon and doubtless took away from him the Hellenistic cities, as he did in Judaea. When Aristobulus II was murdered by Pompey's party in Judea (49 BC), his sons and daughters found protection with Ptolemy (Ant. xiv. 7, § 4; B. J. i. 9, § 2). It may be that the national Jewish party at that time depended for support on the Itureans in Chalcis, and perhaps the following statement has reference to that fact: "On the 17th of Adar danger threatened the rest of the Soferim in the city of Chalcis, and it was salvation for Israel" (Meg. Ta'an. xii.).

Alexander the Great

Alexander III of Macedon (20/21 July 356 BC – 10/11 June 323 BC), commonly known as Alexander the Great (Greek: Ἀλέξανδρος ὁ Μέγας, Aléxandros ho Mégas [a.lék.san.dros ho mé.gas], from the Greek ἀλέξω (alexō) "defend" and ἀνδρ- (andr-), the stem of ἀνήρ (anēr) "man" and means "protector of men"), was a King (Basileus) of the Ancient Greek kingdom of Macedon and a member of the Argead dynasty, an ancient Greek royal house. Born in Pella in 356 BC, Alexander succeeded his father, Philip II, to the throne at the age of twenty. He spent most of his ruling years on an unprecedented military campaign through Asia and northeast Africa, and by the age of thirty he had created one of the largest empires of the ancient world, stretching from Greece to Egypt into northwest India and modern-day Pakistan. He was undefeated in battle and is widely considered one of history's most successful military commanders.

During his youth, Alexander was tutored by the philosopher Aristotle until the age of 16. After Philip's assassination in 336 BC, Alexander succeeded his father to the throne and inherited a strong kingdom and an experienced army. Alexander was awarded the generalship of Greece and used this authority to launch his father's Panhellenic project to lead the Greeks in the conquest of Persia. In 334 BC, he invaded the Achaemenid Empire, ruled Asia Minor, and began a series of campaigns that lasted ten years. Alexander broke the power of Persia in a series of decisive battles, most notably the battles of Issus and Gaugamela. He subsequently overthrew the Persian King Darius III and conquered the Achaemenid Empire in its entirety. At that point, his empire stretched from the Adriatic Sea to the Indus River.

Alexander the Great (album)

Alexander the Great is an album by pianist Monty Alexander recorded in 1964 for the Pacific Jazz label.

Reception

AllMusic rated the album with 4 stars and reviewer Scott Yanow noted: "Even at that early stage, Alexander had very impressive technique and his Oscar Peterson-influenced style was starting to become distinctive".

Track listing

  • "John Brown's Body" (Traditional) - 5:30
  • "Jitterbug Waltz" (Fats Waller) - 3:59
  • "Comin' Home Baby" (Ben Tucker) - 5:45
  • "If I Were a Bell" (Frank Loesser) - 6:18
  • "The Grabber" (Monty Alexander) - 5:30
  • "Autumn Leaves" (Joseph Kosma, Johnny Mercer) - 5:59
  • "I've Never Been in Love Before" (Loesser) - 5:30
  • "Blues for Jilly" (Alexander) - 4:40
  • Personnel

  • Monty Alexander - piano
  • Victor Gaskin - bass
  • Paul Humphrey - drums
  • References

    Alexander the Great (disambiguation)

    Alexander the Great was an ancient king of Macedon (356–323 BC).

    Alexander the Great may also refer to:

    People

  • Alexander I of Georgia, King of Georgia (1412–42)
  • Books

  • The Alexander Trilogy (Trilogia di Aléxandros) by Valerio Massimo Manfredi (1998):
  • Child of a Dream (Il figlio del sogno)
  • The Sands of Ammon (Le sabbie di Amon)
  • The Ends of the Earth (Il confine del mondo)
  • Entertainment

  • Sikandar (1941 film), an Indian film starring Prithviraj Kapoor as Alexander
  • Alexander the Great (1956 film), an American film starring Richard Burton
  • Alexander (2004 film), a 2004 film directed by Oliver Stone
  • Alexander the Great (2010 film), a Malayalam-language film starring Mohanlal
  • Alexander the Great (album), 1965 album by Monty Alexander
  • Alexander the Great (band), a music band from the Republic of Macedonia
  • "Alexander the Great", a song by Iron Maiden from 1986's Somewhere in Time
  • Podcasts:

    • The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII

      The Ptolemaic dynasty in Ancient Egypt began under the rule of Ptolemy I Soter, whose goal was to make Egypt great again and he did that by putting the country back on solid economic and administrative footing, and it ended with Cleopatra VII. When Alexander the Great of Macedon died unexpectedly in 323 BCE he had amassed an enormous empire spanning from Egypt through Anatolia, Mesopotamia and parts of India. In order to stay away from the influence of the priests and officials at Memphis, Ptolemy I moved the capital from its traditional place at Memphis to Alexandria. Alexandria, a city established by Alexander the Great, grew and flourished under the Ptolemies. The city became more of a Greek city than an Egyptian one, with the port giving easy access to the sea and Greece, and with Gree...

      published: 22 Feb 2022
    • The Last Days of Ptolemy Grey — Official Trailer | Apple TV+

      Set your mind free. The Last Days of Ptolemy Grey starring Samuel L. Jackson is now streaming on Apple TV+ https://apple.co/_PtolemyGrey Ptolemy Grey, an ailing man is forgotten by his family, by his friends, and by even himself. Suddenly left without his trusted caretaker and on the brink of sinking even deeper into a lonely dementia, Ptolemy is assigned to the care of orphaned teenager Robyn, played by Dominique Fishback. When they learn about a treatment that can restore Ptolemy’s dementia-addled memories, it begins a journey toward shocking truths about the past, present and future. Song: “The Fire” by The Roots (feat. John Legend) https://apple.co/TheFire_RootsfeatLegend Subscribe to Apple TV’s YouTube channel: https://apple.co/AppleTVYouTube Follow Apple TV: Instagram: https://...

      published: 04 Feb 2022
    • Overly Sarcastic Podcast: The Ptolemies

      Good lord. This is a giant mess of a family tree. Just... Just watch it and see for yourself. Downloadable audio file can be found here: http://www.mediafire.com/file/7d2fkopglxaasjb/OSPodcast+12.m4a And all other episodes can be found here: http://www.mediafire.com/?1t64h3ehtg3pe PATREON: www.patreon.com/user?u=4664797 MERCH LINKS: Shirts - https://overlysarcasticproducts.threadless.com/designs All the other stuff - http://www.cafepress.com/OverlySarcasticProducts Find us on Twitter @OSPYouTube!

      published: 23 Feb 2017
    • Ptolemy I: The Founders of Egypt's Final Dynasty

      Head to Squarespace.com for a free trial, and when you're ready to launch, go to http://squarespace.com/biographics to save 10% off on your first purchase of a website/domain using the code BIOGRAPHICS → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out our other YouTube Channels: Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw TopTenz: https://www.youtube.com/user/toptenznet Eric's Stuff: Storyrant: https://www.youtube.com/@UC6Sk2h2WsYMxnGERAH_FbGg OEI analog horror experiment: https://www.youtube.com/@UCsz5l0hY67TGoJR0CZiWVnA Free Scifi-Horror Ebook: https://dl.bookfunnel.com/1cw07o2uyb Link Tree to Other Books and Socials: https://linktr.ee/EricMalikyte Karl's Socials: Fact Fi...

      published: 31 May 2024
    • Ptolemy's Geocentric Model

      Without modern instruments, it was very hard to understand what the planets were, especially since they seemed to wander independently from the stars. Ptolemy provided the definitive answer for the time being. Earth was the centre of the universe and all the heavenly bodies rotated around it. For inquiry, consider the following: 1. Investigate the work of Aristarchus. What was his model of the universe and why? How did it differ from Ptolemy's? 2. Why is there no gale force wind blowing constantly as the Earth moves about the Sun? What is the cause of wind? How do hurricanes evolve? 3. What was it about the Ptolemaic model that allowed it to last for 1500 years, and what was it that eventually brought about it's demise? 4. Explain why you don't change position in a moving train when you j...

      published: 03 Jul 2022
    • A New Pharaoh : The Life of Ptolemy I Soter

      How did a Greek become the Pharoh on Egpyt? FIND OUT NOW! __________________________________________________________________________ SUBSCRIBE NOW : https://bit.ly/3aYZCOh PATREON : https://bit.ly/3b0VixZ MERCH : https://bit.ly/2X4d8rX __________________________________________________________________________ Music provided by No Copyright Music #AncientEgypt #AncientGreece#AncientHistoryGuy

      published: 15 Jun 2021
    • A Miraculous Proof (Ptolemy's Theorem) - Numberphile

      Featuring Zvezdelina Stankova... Want more? Part 2 (bringing in Pentagons and the Golden Ratio) is at: https://youtu.be/o3QBgkQi_HA More links & stuff in full description below ↓↓↓ Zvezda's Numberphile playlist: http://bit.ly/zvezda_videos Zvezda's webpage: https://math.berkeley.edu/~stankova/ Epic Circles: https://youtu.be/sG_6nlMZ8f4 Triangle Magic Highway: https://youtu.be/wVH4MS6v23U Numberphile is supported by the Mathematical Sciences Research Institute (MSRI): http://bit.ly/MSRINumberphile We are also supported by Science Sandbox, a Simons Foundation initiative dedicated to engaging everyone with the process of science. https://www.simonsfoundation.org/outreach/science-sandbox/ And support from Math For America - https://www.mathforamerica.org/ NUMBERPHILE Website: http://...

      published: 09 Feb 2020
    • The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5

      The History of Egypt: The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5 #Egypt #SeeUinHistory #History Check out our comics: Japanese Mythology in Comics: The Essential - https://amzn.to/3nCv1dn Eros and Psyche: The Quest for Love - https://amzn.to/2I9XrLt Medusa: The Cursed Priestess - https://amzn.to/34Jf5O0

      published: 30 Dec 2020
    • Ptolemies Live Living Room, Burlington, ON, Canada 03.15.2025

      published: 16 Mar 2025
    • Ptolemy's geocentric universe (aka Claudius Ptolemaeus' model)

      clip from "The Universe -- Infinite Frontier" about astronomer/geographer/mathematician Ptolemy

      published: 19 Oct 2010
    The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII
    17:23

    The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII

    • Order:
    • Duration: 17:23
    • Uploaded Date: 22 Feb 2022
    • views: 61476
    The Ptolemaic dynasty in Ancient Egypt began under the rule of Ptolemy I Soter, whose goal was to make Egypt great again and he did that by putting the country back on solid economic and administrative footing, and it ended with Cleopatra VII. When Alexander the Great of Macedon died unexpectedly in 323 BCE he had amassed an enormous empire spanning from Egypt through Anatolia, Mesopotamia and parts of India. In order to stay away from the influence of the priests and officials at Memphis, Ptolemy I moved the capital from its traditional place at Memphis to Alexandria. Alexandria, a city established by Alexander the Great, grew and flourished under the Ptolemies. The city became more of a Greek city than an Egyptian one, with the port giving easy access to the sea and Greece, and with Greece becoming the language of both commerce and government. A thing to note about the Ptolemies, although they were Pharaohs of Egypt, they didn’t learn the Egyptian language and pretty much just stayed in Alexandria (which they had made the new capital, moving it from the traditional capital of Memphis). They used Greek for all of their administrative documents, and married within their own family to keep the bloodline pure and also keep their wealth in the family. — SUPPORT US VIA OUR PATREON— https://www.patreon.com/join/whencyclopedia — BUY OUR MERCH — https://www.worldhistory.store​/​ — CHAPTERS — 0:00​ Introduction 0:51 Lead Up To The Ptolemaic Dynasty 3:50 Egypt During the Ptolemaic Dynasty 7:48 The Ptolemy Family Tree 16:49 Outro — WANT TO KNOW MORE? — Ptolemaic Dynasty https://www.worldhistory.org/Ptolemaic_Dynasty/ Ptolemy I https://www.worldhistory.org/Ptolemy_I/ Ptolemy XIII Theos Philopator https://www.worldhistory.org/Ptolemy_XIII_Theos_Philopator/ Arsinoe II Philadelphus https://www.worldhistory.org/Arsinoe_II_Philadelphus/ Cleopatra VII https://www.worldhistory.org/Cleopatra_VII/ The Economy of Ptolemaic Egypt https://www.worldhistory.org/article/1256/the-economy-of-ptolemaic-egypt/ Berenika II Euergetis https://www.worldhistory.org/Berenice_II_Euergetis/ — WATCH NEXT — Cleopatra VII Philopator: the Last Queen of Ancient Egypt https://www.youtube.com/watch?v=J6bM6ElVO5k 7 Surprising Stories from Herodotus' Histories https://www.youtube.com/watch?v=QRf1jUgXRqQ Alexander the Great: Life and Reign of the King of the Macedonian Empire https://www.youtube.com/watch?v=_E7JX-rVdFk The Seven Wonders of the Ancient World: an Overview https://www.youtube.com/watch?v=1YWPMZ6pHm8 Comparing Two Ancient Civilisations: Ancient Egypt vs. Mesopotamia https://www.youtube.com/watch?v=EwY-ziBL1Jw — ATTRIBUTIONS — You can find all attribution and credits for images, animations, graphics and music here - https://worldhistory.typehut.com/the-ptolemaic-dynasty-of-ancient-egypt-from-ptolemy-i-to-cleopatra-vii-images-and-attributions-8317 The music used in this recording is the intellectual copyright of Michael Levy, a prolific composer for the recreated lyres of antiquity, and used with the creator's permission. Michael Levy's music is available to stream at all the major digital music platforms. Find out more on: https://www.ancientlyre.com https://open.spotify.com/artist/7Dx2vFEg8DmOJ5YCRm4A5v?si=emacIH9CRieFNGXRUyJ9 https://www.youtube.com/channel/UCJ1X6F7lGMEadnNETSzTv8A — THUMBNAIL IMAGE — https://www.worldhistory.org/image/15205/family-tree-of-the-ptolemaic-dynasty-of-egypt-305/ Simeon Netchev CC BY NC SA 4.0 - https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en https://en.wikipedia.org/wiki/File:Ptolemy_I_as_Pharaoh_of_Egypt.jpg Stella CC BY SA 4.0 - https://creativecommons.org/licenses/by-sa/4.0/ World History Encyclopedia www.worldhistory.org #ptolemy #ptolemaicdynasty #cleopatravii
    https://wn.com/The_Ptolemaic_Dynasty_Of_Ancient_Egypt_From_Ptolemy_I_To_Cleopatra_Vii
    The Last Days of Ptolemy Grey — Official Trailer | Apple TV+
    2:13

    The Last Days of Ptolemy Grey — Official Trailer | Apple TV+

    • Order:
    • Duration: 2:13
    • Uploaded Date: 04 Feb 2022
    • views: 3185261
    Set your mind free. The Last Days of Ptolemy Grey starring Samuel L. Jackson is now streaming on Apple TV+ https://apple.co/_PtolemyGrey Ptolemy Grey, an ailing man is forgotten by his family, by his friends, and by even himself. Suddenly left without his trusted caretaker and on the brink of sinking even deeper into a lonely dementia, Ptolemy is assigned to the care of orphaned teenager Robyn, played by Dominique Fishback. When they learn about a treatment that can restore Ptolemy’s dementia-addled memories, it begins a journey toward shocking truths about the past, present and future. Song: “The Fire” by The Roots (feat. John Legend) https://apple.co/TheFire_RootsfeatLegend Subscribe to Apple TV’s YouTube channel: https://apple.co/AppleTVYouTube Follow Apple TV: Instagram: https://instagram.com/AppleTV Facebook: https://facebook.com/AppleTV Twitter: https://twitter.com/AppleTV Giphy: https://giphy.com/AppleTV More from Apple TV: https://apple.co/32qgOEJ Apple TV+ is a streaming service with original stories from the most creative minds in TV and film. Watch now on the Apple TV app: https://apple.co/_AppleTVapp #PtolemyGrey #Trailer #AppleTV
    https://wn.com/The_Last_Days_Of_Ptolemy_Grey_—_Official_Trailer_|_Apple_Tv
    Overly Sarcastic Podcast: The Ptolemies
    16:50

    Overly Sarcastic Podcast: The Ptolemies

    • Order:
    • Duration: 16:50
    • Uploaded Date: 23 Feb 2017
    • views: 776221
    Good lord. This is a giant mess of a family tree. Just... Just watch it and see for yourself. Downloadable audio file can be found here: http://www.mediafire.com/file/7d2fkopglxaasjb/OSPodcast+12.m4a And all other episodes can be found here: http://www.mediafire.com/?1t64h3ehtg3pe PATREON: www.patreon.com/user?u=4664797 MERCH LINKS: Shirts - https://overlysarcasticproducts.threadless.com/designs All the other stuff - http://www.cafepress.com/OverlySarcasticProducts Find us on Twitter @OSPYouTube!
    https://wn.com/Overly_Sarcastic_Podcast_The_Ptolemies
    Ptolemy I: The Founders of Egypt's Final Dynasty
    24:16

    Ptolemy I: The Founders of Egypt's Final Dynasty

    • Order:
    • Duration: 24:16
    • Uploaded Date: 31 May 2024
    • views: 33208
    Head to Squarespace.com for a free trial, and when you're ready to launch, go to http://squarespace.com/biographics to save 10% off on your first purchase of a website/domain using the code BIOGRAPHICS → Subscribe for new videos at least twice a week! https://www.youtube.com/c/biographics?sub_confirmation=1 Love content? Check out our other YouTube Channels: Geographics: https://www.youtube.com/channel/UCHKRfxkMTqiiv4pF99qGKIw TopTenz: https://www.youtube.com/user/toptenznet Eric's Stuff: Storyrant: https://www.youtube.com/@UC6Sk2h2WsYMxnGERAH_FbGg OEI analog horror experiment: https://www.youtube.com/@UCsz5l0hY67TGoJR0CZiWVnA Free Scifi-Horror Ebook: https://dl.bookfunnel.com/1cw07o2uyb Link Tree to Other Books and Socials: https://linktr.ee/EricMalikyte Karl's Socials: Fact Fiend: https://www.youtube.com/@FactFiend Wiki Weekends: https://www.youtube.com/@wikiweekends Untitled Side Channel: https://www.youtube.com/@untitledsidechannel Twitter: https://twitter.com/KarlSmallwood Further Reading: Samuel Sharpe - The History of Egypt under the Ptolemies C. A. Kincaid - Successors of Alexander the Great Ian Shaw - The Oxford History of Ancient Egypt Diodorus Siculus - Library of History Livius WorldHistory
    https://wn.com/Ptolemy_I_The_Founders_Of_Egypt's_Final_Dynasty
    Ptolemy's Geocentric Model
    5:21

    Ptolemy's Geocentric Model

    • Order:
    • Duration: 5:21
    • Uploaded Date: 03 Jul 2022
    • views: 19168
    Without modern instruments, it was very hard to understand what the planets were, especially since they seemed to wander independently from the stars. Ptolemy provided the definitive answer for the time being. Earth was the centre of the universe and all the heavenly bodies rotated around it. For inquiry, consider the following: 1. Investigate the work of Aristarchus. What was his model of the universe and why? How did it differ from Ptolemy's? 2. Why is there no gale force wind blowing constantly as the Earth moves about the Sun? What is the cause of wind? How do hurricanes evolve? 3. What was it about the Ptolemaic model that allowed it to last for 1500 years, and what was it that eventually brought about it's demise? 4. Explain why you don't change position in a moving train when you jump up in the air. Why does the train not move out from under you? 5. Use this website as a starting point to do some research and reporting into the great minds that have influenced our understanding of the heavens: https://starchild.gsfc.nasa.gov/docs/StarChild/universe_level2/cosmology.html 6. In Western society, we often hear only about the Greeks and perhaps the Egyptians, with regard to astronomy. Find one major astronomical contribution made by the Chinese, the Indian and at least one First Nation.
    https://wn.com/Ptolemy's_Geocentric_Model
    A New Pharaoh : The Life of Ptolemy I Soter
    12:41

    A New Pharaoh : The Life of Ptolemy I Soter

    • Order:
    • Duration: 12:41
    • Uploaded Date: 15 Jun 2021
    • views: 27244
    How did a Greek become the Pharoh on Egpyt? FIND OUT NOW! __________________________________________________________________________ SUBSCRIBE NOW : https://bit.ly/3aYZCOh PATREON : https://bit.ly/3b0VixZ MERCH : https://bit.ly/2X4d8rX __________________________________________________________________________ Music provided by No Copyright Music #AncientEgypt #AncientGreece#AncientHistoryGuy
    https://wn.com/A_New_Pharaoh_The_Life_Of_Ptolemy_I_Soter
    A Miraculous Proof (Ptolemy's Theorem) - Numberphile
    38:28

    A Miraculous Proof (Ptolemy's Theorem) - Numberphile

    • Order:
    • Duration: 38:28
    • Uploaded Date: 09 Feb 2020
    • views: 1047696
    Featuring Zvezdelina Stankova... Want more? Part 2 (bringing in Pentagons and the Golden Ratio) is at: https://youtu.be/o3QBgkQi_HA More links & stuff in full description below ↓↓↓ Zvezda's Numberphile playlist: http://bit.ly/zvezda_videos Zvezda's webpage: https://math.berkeley.edu/~stankova/ Epic Circles: https://youtu.be/sG_6nlMZ8f4 Triangle Magic Highway: https://youtu.be/wVH4MS6v23U Numberphile is supported by the Mathematical Sciences Research Institute (MSRI): http://bit.ly/MSRINumberphile We are also supported by Science Sandbox, a Simons Foundation initiative dedicated to engaging everyone with the process of science. https://www.simonsfoundation.org/outreach/science-sandbox/ And support from Math For America - https://www.mathforamerica.org/ NUMBERPHILE Website: http://www.numberphile.com/ Numberphile on Facebook: http://www.facebook.com/numberphile Numberphile tweets: https://twitter.com/numberphile Subscribe: http://bit.ly/Numberphile_Sub Videos by Brady Haran Additional editing and animation by Pete McPartlan Patreon: http://www.patreon.com/numberphile Numberphile T-Shirts and Merch: https://teespring.com/stores/numberphile Brady's videos subreddit: http://www.reddit.com/r/BradyHaran/ Brady's latest videos across all channels: http://www.bradyharanblog.com/ Sign up for (occasional) emails: http://eepurl.com/YdjL9
    https://wn.com/A_Miraculous_Proof_(Ptolemy's_Theorem)_Numberphile
    The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5
    9:35

    The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5

    • Order:
    • Duration: 9:35
    • Uploaded Date: 30 Dec 2020
    • views: 91580
    The History of Egypt: The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5 #Egypt #SeeUinHistory #History Check out our comics: Japanese Mythology in Comics: The Essential - https://amzn.to/3nCv1dn Eros and Psyche: The Quest for Love - https://amzn.to/2I9XrLt Medusa: The Cursed Priestess - https://amzn.to/34Jf5O0
    https://wn.com/The_Twilight_Of_Egyptian_Civilization_The_Greek_Egypt_(Ptolemy_And_Cleopatra)_Part_5
    Ptolemies Live Living Room, Burlington, ON, Canada 03.15.2025
    1:13:31

    Ptolemies Live Living Room, Burlington, ON, Canada 03.15.2025

    • Order:
    • Duration: 1:13:31
    • Uploaded Date: 16 Mar 2025
    • views: 7
    https://wn.com/Ptolemies_Live_Living_Room,_Burlington,_On,_Canada_03.15.2025
    Ptolemy's geocentric universe (aka Claudius Ptolemaeus' model)
    2:52

    Ptolemy's geocentric universe (aka Claudius Ptolemaeus' model)

    • Order:
    • Duration: 2:52
    • Uploaded Date: 19 Oct 2010
    • views: 91292
    clip from "The Universe -- Infinite Frontier" about astronomer/geographer/mathematician Ptolemy
    https://wn.com/Ptolemy's_Geocentric_Universe_(Aka_Claudius_Ptolemaeus'_Model)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII
      17:23
      The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VIIremove from playlist
    • The Last Days of Ptolemy Grey — Official Trailer | Apple TV+
      2:13
      The Last Days of Ptolemy Grey — Official Trailer | Apple TV+remove from playlist
    • Overly Sarcastic Podcast: The Ptolemies
      16:50
      Overly Sarcastic Podcast: The Ptolemiesremove from playlist
    • Ptolemy I: The Founders of Egypt's Final Dynasty
      24:16
      Ptolemy I: The Founders of Egypt's Final Dynastyremove from playlist
    • Ptolemy's Geocentric Model
      5:21
      Ptolemy's Geocentric Modelremove from playlist
    • A New Pharaoh : The Life of Ptolemy I Soter
      12:41
      A New Pharaoh : The Life of Ptolemy I Soterremove from playlist
    • A Miraculous Proof (Ptolemy's Theorem) - Numberphile
      38:28
      A Miraculous Proof (Ptolemy's Theorem) - Numberphileremove from playlist
    • The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5
      9:35
      The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5remove from playlist
    PLAYLIST TIME:

    The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII

    The Ptolemaic dynasty in Ancient Egypt began under the rule of Ptolemy I Soter, whose goal was to make Egypt great again and he did that by putting the country back on solid economic and administrative footing, and it ended with Cleopatra VII. When Alexander the Great of Macedon died unexpectedly in 323 BCE he had amassed an enormous empire spanning from Egypt through Anatolia, Mesopotamia and parts of India. In order to stay away from the influence of the priests and officials at Memphis, Ptolemy I moved the capital from its traditional place at Memphis to Alexandria. Alexandria, a city established by Alexander the Great, grew and flourished under the Ptolemies. The city became more of a Greek city than an Egyptian one, with the port giving easy access to the sea and Greece, and with Greece becoming the language of both commerce and government. A thing to note about the Ptolemies, although they were Pharaohs of Egypt, they didn’t learn the Egyptian language and pretty much just stayed in Alexandria (which they had made the new capital, moving it from the traditional capital of Memphis). They used Greek for all of their administrative documents, and married within their own family to keep the bloodline pure and also keep their wealth in the family. — SUPPORT US VIA OUR PATREON— https://www.patreon.com/join/whencyclopedia — BUY OUR MERCH — https://www.worldhistory.store​/​ — CHAPTERS — 0:00​ Introduction 0:51 Lead Up To The Ptolemaic Dynasty 3:50 Egypt During the Ptolemaic Dynasty 7:48 The Ptolemy Family Tree 16:49 Outro — WANT TO KNOW MORE? — Ptolemaic Dynasty https://www.worldhistory.org/Ptolemaic_Dynasty/ Ptolemy I https://www.worldhistory.org/Ptolemy_I/ Ptolemy XIII Theos Philopator https://www.worldhistory.org/Ptolemy_XIII_Theos_Philopator/ Arsinoe II Philadelphus https://www.worldhistory.org/Arsinoe_II_Philadelphus/ Cleopatra VII https://www.worldhistory.org/Cleopatra_VII/ The Economy of Ptolemaic Egypt https://www.worldhistory.org/article/1256/the-economy-of-ptolemaic-egypt/ Berenika II Euergetis https://www.worldhistory.org/Berenice_II_Euergetis/ — WATCH NEXT — Cleopatra VII Philopator: the Last Queen of Ancient Egypt https://www.youtube.com/watch?v=J6bM6ElVO5k 7 Surprising Stories from Herodotus' Histories https://www.youtube.com/watch?v=QRf1jUgXRqQ Alexander the Great: Life and Reign of the King of the Macedonian Empire https://www.youtube.com/watch?v=_E7JX-rVdFk The Seven Wonders of the Ancient World: an Overview https://www.youtube.com/watch?v=1YWPMZ6pHm8 Comparing Two Ancient Civilisations: Ancient Egypt vs. Mesopotamia https://www.youtube.com/watch?v=EwY-ziBL1Jw — ATTRIBUTIONS — You can find all attribution and credits for images, animations, graphics and music here - https://worldhistory.typehut.com/the-ptolemaic-dynasty-of-ancient-egypt-from-ptolemy-i-to-cleopatra-vii-images-and-attributions-8317 The music used in this recording is the intellectual copyright of Michael Levy, a prolific composer for the recreated lyres of antiquity, and used with the creator's permission. Michael Levy's music is available to stream at all the major digital music platforms. Find out more on: https://www.ancientlyre.com https://open.spotify.com/artist/7Dx2vFEg8DmOJ5YCRm4A5v?si=emacIH9CRieFNGXRUyJ9 https://www.youtube.com/channel/UCJ1X6F7lGMEadnNETSzTv8A — THUMBNAIL IMAGE — https://www.worldhistory.org/image/15205/family-tree-of-the-ptolemaic-dynasty-of-egypt-305/ Simeon Netchev CC BY NC SA 4.0 - https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en https://en.wikipedia.org/wiki/File:Ptolemy_I_as_Pharaoh_of_Egypt.jpg Stella CC BY SA 4.0 - https://creativecommons.org/licenses/by-sa/4.0/ World History Encyclopedia www.worldhistory.org #ptolemy #ptolemaicdynasty #cleopatravii
    17:23
    The Ptolemaic Dynasty of Ancient Egypt: From Ptolemy I to Cleopatra VII
    The Ptolemaic dynasty in Ancient Egypt began under the rule of Ptolemy I Soter, whose goal...
    published: 22 Feb 2022
    Play in Full Screen
    2:13
    The Last Days of Ptolemy Grey — Official Trailer | Apple TV+
    Set your mind free. The Last Days of Ptolemy Grey starring Samuel L. Jackson is now stream...
    published: 04 Feb 2022
    Play in Full Screen
    16:50
    Overly Sarcastic Podcast: The Ptolemies
    Good lord. This is a giant mess of a family tree. Just... Just watch it and see for yourse...
    published: 23 Feb 2017
    Play in Full Screen
    24:16
    Ptolemy I: The Founders of Egypt's Final Dynasty
    Head to Squarespace.com for a free trial, and when you're ready to launch, go to http://sq...
    published: 31 May 2024
    Play in Full Screen
    5:21
    Ptolemy's Geocentric Model
    Without modern instruments, it was very hard to understand what the planets were, especial...
    published: 03 Jul 2022
    Play in Full Screen
    12:41
    A New Pharaoh : The Life of Ptolemy I Soter
    How did a Greek become the Pharoh on Egpyt? FIND OUT NOW! ______________________________...
    published: 15 Jun 2021
    Play in Full Screen
    38:28
    A Miraculous Proof (Ptolemy's Theorem) - Numberphile
    Featuring Zvezdelina Stankova... Want more? Part 2 (bringing in Pentagons and the Golden ...
    published: 09 Feb 2020
    Play in Full Screen
    9:35
    The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and Cleopatra) - Part 5
    The History of Egypt: The Twilight of Egyptian Civilization - The Greek Egypt (Ptolemy and...
    published: 30 Dec 2020
    Play in Full Screen
    1:13:31
    Ptolemies Live Living Room, Burlington, ON, Canada 03.15.2025
    published: 16 Mar 2025
    Play in Full Screen
    2:52
    Ptolemy's geocentric universe (aka Claudius Ptolemaeus' model)
    clip from "The Universe -- Infinite Frontier" about astronomer/geographer/mathematician Pt...
    published: 19 Oct 2010
    Play in Full Screen

    Ptolemy

    Claudius Ptolemy (/ˈtɒləmi/; Greek: Κλαύδιος Πτολεμαῖος, Klaúdios Ptolemaîos, [kláwdios ptolɛmɛ́ːos]; Latin: Claudius Ptolemaeus; c. AD 100 – c.170) was a Greco-Egyptian writer, known as a mathematician, astronomer, geographer, astrologer, and poet of a single epigram in the Greek Anthology. He lived in the city of Alexandria in the Roman province of Egypt, wrote in Koine Greek, and held Roman citizenship. Beyond that, few reliable details of his life are known. His birthplace has been given as Ptolemais Hermiou in the Thebaid in an uncorroborated statement by the 14th-century astronomer Theodore Meliteniotes. This is a very late attestation, however, and there is no other reason to suppose that he ever lived anywhere else than Alexandria, where he died around AD 168.

    Ptolemy was the author of several scientific treatises, three of which were of continuing importance to later Byzantine, Islamic and European science. The first is the astronomical treatise now known as the Almagest, although it was originally entitled the "Mathematical Treatise" (Μαθηματικὴ Σύνταξις, Mathēmatikē Syntaxis) and then known as the "Great Treatise" (Ἡ Μεγάλη Σύνταξις, Ē Megálē Syntaxis). The second is the Geography, which is a thorough discussion of the geographic knowledge of the Greco-Roman world. This manuscript was used by Christopher Columbus as the map for his westward-bound path to Asia, in which he discovered the hitherto unknown lands of the Americas. The third is the astrological treatise in which he attempted to adapt horoscopic astrology to the Aristotelian natural philosophy of his day. This is sometimes known as the Apotelesmatika (Ἀποτελεσματικά) but more commonly known as the Tetrabiblos from the Greek (Τετράβιβλος) meaning "Four Books" or by the Latin Quadripartitum.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: ptolemy

    Edit

    Alexander’s Legacy: The Ptolemaic Era of Greek Rule in Egypt

    Greek Reporter 26 Apr 2025
    His general Ptolemy established the Ptolemaic dynasty that would govern the vast lands of Egypt for the next 300 years. The Ptolemies became the rulers over a complex fusion of Greek and Egyptian cultures.
    • 1
    ×