Forums before death by AOL, social media and spammers... "We can't have nice things"
|    rec.arts.manga    |    All aspects of the Japanese storytelling    |    7,759 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 7,015 of 7,759    |
|    Manbow Papa to All    |
|    Wasan in Q.E.D. vol. 38    |
|    27 Feb 11 21:10:27    |
      From: kishik@parkcity.ne.jp              Q.E.D. vol.38              by KATOU Motohiro       published by Koudansha       ISBN978-4-06-371270-4       419 yen (sans tax)              Caution: sorry, this post is LONG.              Q.E.D. is not the cryptic text editor of TOPS-10. It stands       for Quod Erat Demonstrandum that is used at the completion       of mathematical demonstration. The title is so named because       the protagonist Sou says "demonstration accomplished" at       the end of his solving a case, typically a murder case.       He graduated from MIT at age 15, returned to Japan and       entered a highschool. His class mate Kana takes a role of       trickster and involves him in cases.              Normally I don't buy the series because of bland artwork       and flat storytelling. Volume 38 has an episode of wasan       [old Japan's mathematics] that caught my attention.              [ episode: "Seventeen" ]              Katasumi-jinja has a small old shrine in shape of a regular       polygon of seventeen edges. Its inside is painted in black,       the floor has two lines crossed at the center where is a       small circle representing a zero. On the wall, many sangaku       [mathematics plate] are also hanged. One of the sangaku was       signed as "Aisa, 13 years old" and has a picture that looks       like a pearl necklace. Each one of twenty circles is contacted       to two adjacent ones and has a white portion and a black       portion divided by perpendicular lines starting from the       center of it and ending to the contact points. All black       portions are faced inside of the closed ring. Sou thinks       that it's a mathematical question to ask for the difference       between total area of white portion and of black. Sou solves       the problem and thinks further about the mystery hidden in       the shrine.              In Edo about 300 years ago, a famous wasan authority TAKEBE       Katahiro was introduced to a young girl Aisa. Takebe gave       her a problem to ask for the length of diameter of a circle       inscribed to a triangle of 10x10x12. In front of him, she       solved the problem with ease. So, he gave her another       problem. Next day, she visited him and solved the problem       that was the same one on the sangaku Sou solves three       centuries later.              Aisa explored mathematics further and found that some equations       had two different answers one of which didn't look legitimate.       Wasan didn't have concept of imaginary numbers, but she believed       in the answers and reached to an idea of the complex plane. She       tried to draw graphs of the answers of the equation X*X = 1       on the plane and got beautiful regular polygons. But she wasn't       Gauss, and couldn't make her idea a theory. So in hope of       someone solve the problem in a future, Aisa and Takebe built       the shrine as an unsolved problem.              Sou thinks that the shape of seventeen edges might suggest that       Aisa reached an idea of the theory during her exploration of       a 17 degree polynomial that also led Gauss to the theory.              [ Wasan (old Japan's mathematics) ]              In 1627, YOSHIDA Mitsuyoshi published "Jinkouki" that is a text       book of mathematics based on a Chinese book. In the end of the       book, he gave readers unsolved problems as a challenge. The       book got a great popularity and readers kept solving problems       and providing new problems. People who were interested in wasan       offered sangaku to shrines and temples to thank deities for the       solution and invention of a problem. As the result, wasan was       advanced significantly. The Japanese custom of sangaku was unique       in the history of the world.              The Japanese still refers to nezumizan [mice's calculation],       a topic in "Jinkouki", as a synonym of rapidly growing number.       e.g. "インターネット利用者の数は年々ねずみ算式に増えている"       [Year by year, the number of users of internet is growing as       the mice's calculation.]              In the 17th century, SEKI Takakazu developed algebraic expression       and his student TAKEBE Katahiro used power series to get the       value of pi in accuracy of 41 fractional digits. During the Edo       period, however, Japan had only a small limited window to open       to the world and no Newton or Leibniz appeared in the country,       and never really established the differential calculus. In a       recent year, a solution in wasan rediscovered and its elegance       surprised the world.              [ Sangaku (mathematics frame/plate) ]              In the Edo period, terakoya [house of temple's child (lit.)],       which is generally run by a teacher, provided elementary education       to the children of the citizen. Reading, writing and calculating       were the basic skill they should learn. Obviously, the education       system worked quite well and the citizen even enjoyed playing       with mathematics.              In 1977, a research of sangaku found that about 1,000 sangaku are       kept in shrines and temples all over Japan. Not only authorities       but also a lot of citizen made the sangaku. The oldest one was       offrered in 1657, and the newest wasn't very far from 1960. That       means the Japanese love for sangaku lasted about 300 years!              Sangaku reminds me of Martin Gardner's "Mathematical Games"       serialized in the Scientific American magazine some thirty years       ago. His column opened my eyes to the enjoyment of mathematics.              [ Sanpou Shoujo (girl of mathematics) ]              In 1775, a book of wasan titled "Sanpou Shoujo" was published.       We only know the author's family name Taira and she must be       less than 16 years old. It was the only wasan book a woman       wrote in the era. According to the preface, her father who was       a doctor helped her to write the book.              Two centuries later, ENDO Hiroko wrote a juvenile novel       "Sanpou Shoujo" by the inspiration taken from the book.              Would someone write a manga like "Ma-Sanpou Shoujo"       [Magimatics Girl]?              [ Nezumizan (mice's calculation) ]              Hatsuka-nezumi is a small white Japanese domestic mouse that       matures only for 20 days (hatsuka) and has many babies very       quickly. Nezumizan shows how many mice we may have in a year.              "January, a pair of mice appears and has twelve babies making       the total of 14 mice. February, every young pair also has twelve       babies making the grand total, including their parents, of 98       mice. As such, every pair of parents, children, grand children,       grand-grand children and so on has 12 babies once in a month.       I tell you how many numbers of mice you have in 12 months -       that's 27,682,574,402."              #--- a Ruby program of nezumizan ---              format = "month %2d: %d\n"       total = 2       printf(format, 0, total)              (1..12).each do |i|        pairs = total / 2        total += pairs * 12        printf(format, i, total)       end              #--- output ---              month 0: 2       month 1: 14       month 2: 98       month 3: 686       month 4: 4802       month 5: 33614       month 6: 235298       month 7: 1647086       month 8: 11529602       month 9: 80707214       month 10: 564950498       month 11: 3954653486       month 12: 27682574402              --        /Ishikawa Kazuo /              --- SoupGate-Win32 v1.05        * Origin: you cannot sedate... all the things you hate (1:229/2)    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca