All Episodes

May 5, 2024 1 min
il concetto di "macchina universale" è strettamente legato al lavoro del matematico e informatico britannico Alan Turing. Nel 1936, Turing ha introdotto l'idea di una macchina teorica chiamata "macchina di Turing". Questa macchina era un modello astratto di un computer che poteva eseguire qualsiasi calcolo possibile seguendo una serie di istruzioni, definite tramite un programma.
La sua intuizione fondamentale era che esisteva un modello di calcolo universale, capace di eseguire qualsiasi procedura algoritmica. Questo concetto è diventato noto come la Tesi di Church-Turing, che suggerisce che tutto ciò che può essere calcolato seguendo un algoritmo può essere calcolato da una macchina di Turing, o da qualsiasi altro modello di calcolo universale equivalente.

# This is the first example machine given by Alan Turing in his 1936 paper
#   "On Computable Numbers, with an Application to
#    the Entscheidungsproblem".
# It simply writes the endless sequence 0 1 0 1 0 1...
blank: ' '
start state: b
table:
  b:
    ' ': {write: 0, R: c}
  c:
    ' ':           {R: e}
  e:
    ' ': {write: 1, R: f}
  f:
    ' ':           {R: b}

# (Turing uses the convention of leaving a gap after each output cell,
# reserving it for marking the cell. For instance, on a tape that
# contains '0 1x0 0 1 1y1y0y', x marks the leftmost 1 and y marks 110.)
Mark as Played

Advertise With Us

Popular Podcasts

24/7 News: The Latest
Dateline NBC

Dateline NBC

Current and classic episodes, featuring compelling true-crime mysteries, powerful documentaries and in-depth investigations. Follow now to get the latest episodes of Dateline NBC completely free, or subscribe to Dateline Premium for ad-free listening and exclusive bonus content: DatelinePremium.com

The Clay Travis and Buck Sexton Show

The Clay Travis and Buck Sexton Show

The Clay Travis and Buck Sexton Show. Clay Travis and Buck Sexton tackle the biggest stories in news, politics and current events with intelligence and humor. From the border crisis, to the madness of cancel culture and far-left missteps, Clay and Buck guide listeners through the latest headlines and hot topics with fun and entertaining conversations and opinions.

Music, radio and podcasts, all free. Listen online or download the iHeart App.

Connect

© 2025 iHeartMedia, Inc.