| r54 vs r55 | ||
|---|---|---|
| ... | ... | |
| 454 | 454 | {{{#!if 2.0*(3.0**0.5)==12.0**0.5 |
| 455 | 455 | 출력}}} |
| 456 | 456 | ---- |
| 457 | 다만, 아직까지는 [math(\sqrt{a}\times\sqrt{b}=\sqrt{ab})] 식이 정확히 동작되는지 더 살펴봐야 할듯. | |
| 458 | [math(\sqrt{13}\times\sqrt{10}=\sqrt{130})] : 출력된다. | |
| 459 | {{{#!if (13.0**0.5)*(10.0**0.5)==130.0**0.5 | |
| 460 | 출력}}} | |
| 461 | ---- | |
| 462 | [math(\sqrt{13}\times\sqrt{11}=\sqrt{143})] : 출력되지 않는다. | |
| 463 | {{{#!if (13.0**0.5)*(11.0**0.5)==(143.0**0.5) | |
| 464 | 출력}}} | |
| 465 | ---- | |
| 466 | [math(\sqrt{12}\times\sqrt{11}=\sqrt{132})] : 출력된다. | |
| 467 | {{{#!if (12.0**0.5)*(11.0**0.5)==(132.0**0.5) | |
| 468 | 출력}}} | |
| 469 | ---- | |
| 470 | [math(\sqrt{11}\times\sqrt{11}=\sqrt{121})] : 출력된다. | |
| 471 | {{{#!if (11.0**0.5)*(11.0**0.5)==(121.0**0.5) | |
| 472 | 출력}}} | |
| 473 | ---- | |
| 457 | 474 | 지수의 지수 |
| 458 | 475 | {{{+2 2^^^{{{#!wiki style="display:inline;" |
| 459 | 476 | 2^^^2^^^}}}^^^=16}}} : 출력된다. |
| ... | ... |