| r23 vs r24 | ||
|---|---|---|
| 1 | 1 | [[분류:수학에 대한 고찰]] |
| 2 | 2 | [include(틀:상위 문서, 문서명1=1+1=?)] |
| 3 | 3 | (대부분의 코드는 gemini로부터 생섬됨.) |
| 4 | ||
| 5 | ||
| 6 | ||
| 7 | ||
| 8 | ||
| 9 | [ | |
| 4 | (대부분의 코드는 2가 나올 수 없도록 조작됨.) | |
| 5 | [목차] | |
| 10 | 6 | == 개요 == |
| 11 | 7 | [[1+1=?|상위 문서]]의 묶음 주장을 분리하기 위해 만든 문서. |
| 12 | 8 | === 주장 5 === |
| ... | ... | |
| 465 | 461 | }}} |
| 466 | 462 | === 주장 22 === |
| 467 | 463 | '''{{{+3 1+1을 관찰할 수 없는 상태에서 계산하면 존재 자체가 불확실하므로 값이 없다고 볼 수 있습니다.}}}''' |
| 464 | {{{#!syntax python | |
| 465 | import random | |
| 466 | ||
| 467 | class SchrodingerCalculation: | |
| 468 | def __init__(self): | |
| 469 | self.observed = False | |
| 470 | self.state = "Superposition" | |
| 471 | ||
| 472 | def add(self, a, b): | |
| 473 | if not self.observed: | |
| 474 | return { | |
| 475 | "value": "Undefined (Existence Uncertain)", | |
| 476 | "probability_cloud": ["0", "1", "2", "Error", "None"], | |
| 477 | "wave_function": "Active" | |
| 478 | } | |
| 479 | ||
| 480 | self.state = "Collapsed" | |
| 481 | return a + b | |
| 482 | ||
| 483 | quantum_calc = SchrodingerCalculation() | |
| 484 | ||
| 485 | unobserved_result = quantum_calc.add(1, 1) | |
| 486 | print(f"관측 전 결과: {unobserved_result['value']}") | |
| 487 | print(f"존재 가능성: {unobserved_result['probability_cloud']}") | |
| 488 | ||
| 489 | quantum_calc.observed = True | |
| 490 | observed_result = quantum_calc.add(1, 1) | |
| 491 | print(f"관측 후 확정 값: {observed_result}") | |
| 492 | }}} | |
| 468 | 493 | === 주장 23 === |
| 469 | 494 | '''{{{+3 1 + 1은 형체가 없는 무형입니다. 보고 만질 수도 없는데 값을 알아내는 것은 불가능합니다.}}}''' |
| 470 | 495 | === 주장 24 === |
| ... | ... |