Butun axtardiqlarinizi tapmaq ucun buraya: DAXIL OLUN
  Mp4 Mp3 Axtar Yukle
  Video Axtar Yukle
  Shekil Axtar Yukle
  Informasiya Melumat Axtar
  Hazir Inshalar Toplusu
  AZERI CHAT + Tanishliq
  1-11 Sinif Derslikler Yukle
  Saglamliq Tibbi Melumat
  Whatsapp Plus Yukle(Yeni)

  • Ana səhifə
  • Təsadüfi
  • Yaxınlıqdakılar
  • Daxil ol
  • Nizamlamalar
İndi ianə et Əgər Vikipediya sizin üçün faydalıdırsa, bu gün ianə edin.

Fayl:Euclidian and non euclidian geometry.png

  • Fayl
  • Müzakirə
  • Lokal izah əlavə et
  • Fayl
  • Faylın tarixçəsi
  • Faylın istifadəsi
  • Faylın qlobal istifadəsi
  • Metaməlumatlar
Fayl:Euclidian and non euclidian geometry.png
Sınaq göstərişi ölçüsü: 800 × 300 piksel. Digər ölçülər: 320 × 120 piksel | 640 × 240 piksel | 1.024 × 384 piksel | 1.280 × 480 piksel | 4.000 × 1.500 piksel.

Faylın orijinalı (4.000 × 1.500 piksel, fayl həcmi: 128 KB, MIME növü: image/png)

Bu fayl Vikianbarda yerləşir. Açıqlama səhifəsindəki məlumatlar aşağıda göstərilib.
Vikianbar azad lisenziyalı media anbarıdır. Siz də töhfə verə bilərsiniz.

Shows three "blocks" with varying surfaces, whereon a point and som lines are "drawn" to demonstrate

  1. euclidian
  2. elliptical and
  3. hyperbolic geometry

To be exact, the hyperbolic surface was approximated using a chunk of the "inside" of a torus - this may not be perfectly accurate, but apparently it "looks right" in this illustration. :-)

Rendered using POV-Ray (see http://www.povray.org) and the scene description "code" below, then cropped and "numbered" using a graphics software package.

Povray source code
  /*
  ====================================================================
  Surfaces demonstrating euclidian, elliptical and hyperbolic geometry
  --------------------------------------------------------------------
  Created by Søren Peo Pedersen - see my user page at
  http://da.wikipedia.org/wiki/Bruger:Peo
  ====================================================================
  */
  
  // Macro for texture with background pattern, lines, and point "marker"
  #macro SurfaceDrawing (
    Point,        // Position vector: Location of white point
    RefLineMove,  // Transformation: Where to place the yellow reference line
    Lines         // Object that renders the blue line(s)
    )
  
      #local BasePattern=pigment {  // The underlying, dark grey checkerboard pattern
          checker
          color rgb 0.4
          color rgb 0.6
          scale <1,1000,1>
          }
  
      #local SP1 = pigment {    // Checkerboard pattern with yellow "reference line" added
          object {box {<-.07,-10,-10>,<.07,10,10> transform{RefLineMove}}
              pigment {BasePattern}
              pigment {color rgb <1,.8,.3>}
              }
          }    
  
      #local SP2 = pigment {    // Checkerborad + yellow line with user-defined (blue) lines added
          object {Lines
              pigment {SP1}
              pigment {color rgb <.6,.8,1>}
              }
          }    
  
      #local SP3 = pigment {    // Checkerboard + lines with whit point "marker" added
          object {
              sphere { Point, .2 }
              pigment {SP2}
              pigment {color rgb 1}
              }
          }
  
      pigment {   // Definition of pigment, confined to a box slightly smaller than the "blocks"
          boxed   // to make the lines and point only appear on the top of the blocks
          pigment_map {
              [0.0000 BasePattern scale .5 translate <0,-1,0>]
              [0.0001 BasePattern scale .5 translate <0,-1,0>]
              [0.0001 SP3 scale .5 translate <0,-1,0>]
              [1.0000 SP3 scale .5 translate <0,-1,0>]
              }
          scale <2,2,2> translate <0,2,0>
          }          
      finish {ambient .7 diffuse .3}
  #end  // End of macro
  
  plane {<0,1,0>,0      // White "tabletop" to receive shadows of the blocks (helps visualisation)
      pigment {color rgb 1}
      finish {ambient .8 diffuse .5}
      }
  
  box {<-2,0,-2>,<2,2,2>  // Demonstrating euclidean geometry
      texture {
          SurfaceDrawing(<-.3,2,0>,
              transform {rotate <0,35,0> translate <.3,0,0>},
              box {<-.07,-10,-10>,<.07,10,10> rotate <0,35,0> translate <-.3,0,0>}
              )
          }
      rotate <0,-20,0>
      translate <-6,0,0>
      }
  
  intersection {          // Demonstrating elliptical, or "Riemann", geometry
      box {<-2,0,-2>,<2,5,2>}
      sphere {<0,0,0>,2.8285}
      texture {
          SurfaceDrawing(<.65,2.45,1.25>,
              transform {rotate <0,5,0>  rotate <-45,35,0>},
              box {<-.07,-10,-10>,<.07,10,10> rotate <0,-4,0> rotate <-45,35,0>}
              )
          }
      rotate <0,-20,0>
      translate <0,0,0>
      }
  
  intersection {          // Demonstrating hyperbolic geometry
      box {<-2,0,-2>,<2,4,2>}
      torus {7.03,5 rotate <90,90,0> translate <0,4,0>}
      texture {
          SurfaceDrawing(<0,2.3,1>,
              transform {rotate <0,90,0> rotate <-40,0,0> translate <0,4,0>},
              merge {
                  box {<-.07,-10,-10>,<.07,10,10>
                      rotate <0,85,0> rotate <-30,0,0> translate <0,4,0>
                      }
                  box {<-.07,-10,-10>,<.07,10,10>
                      rotate <0,95,0> rotate <-30,0,0> translate <0,4,0>
                      }
                  }
              )
          }
      rotate <0,-20,0>
      translate <6,0,0>
      }
  
  camera {  // Viewpoint
      location <0,2100,-800>
      look_at <.5,0,0>
      angle .47
      }
  
  light_source {<-50,200,-100> color rgb 1.5} // Illumination
I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head Bu sənədi GNU Azad Sənədləşdirmə Lisenziyası, Versiya 1.2 və ya Azad Proqram Fondu tərəfindən nəşr olunan hər hansı sonrakı versiya şərtlərinə əsasən dəyişməz bölmələr, ön qapaq mətnləri və arxa qapaq mətnləri olmadan köçürmək, yayımlamaq və / və ya dəyişdirmək üçün icazə verilir; Lisenziyanın bir nüsxəsi GNU Azad Sənədləşdirmə Lisenziyası adlı hissəyə daxil edilmişdir.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
w:az:Creative Commons
istinad vermək bənzər paylaşma
Bu fayl Creative Commons Attribution-Share Alike 3.0 Unported lisenziyası altında yayımlanır.
Siz heç bir məhdudiyyət olmadan:
  • paylaşa bilərsiniz – əsəri köçürə, paylaya və ötürə bilərsiniz
  • remiks edə bilərsiniz – əsəri adaptasiya edə bilərsiniz
Aşağıdakı şərtlərə əməl etməklə:
  • istinad vermək – Müvafiq istinad verməli, lisenziyaya keçid əlavə etməli və dəyişikliklər edilib-edilmədiyini bildirməlisiniz . Siz bunu istənilən şəkildə edə bilərsiniz, lakin lisenziya verənin sizə şəxsən icazə verdiyini göstərən formada yox.
  • bənzər paylaşma – Əsəri remix edirsinizsə, dəyişdirirsinizsə və ya üzərində iş aparırsınızsa, öz töhfələrinizi orijinalda olduğu kimi eyni və ya uyğun lisenziya altında yayımlamalısınız.
This licensing tag was added to this file as part of the GFDL licensing update.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue
İstədiyiniz lisenziyanı seçə bilərsiniz.

Başlıqlar

Bu faylın nəyi təmsil etdiyinə dair bir sətirlik izahat əlavə et
(1) евклидова геометрия; (2) геометрия Римана; (3) геометрия Лобачевского

Bu faylda təsvir olunan elementlər

təsvir edir

copyright status ingilis

copyrighted ingilis

lisenziya

GNU Free Documentation License, version 1.2 or later ingilis

CC BY-SA 3.0

media type ingilis

image/png

Faylın tarixçəsi

Faylın əvvəlki versiyasını görmək üçün gün/tarix bölməsindəki tarixlərə klikləyin.

Tarix/VaxtMiniatürÖlçülərİstifadəçiŞərh
hal-hazırkı21:47, 5 iyul 201521:47, 5 iyul 2015 tarixindəki versiyanın miniatür görüntüsü4.000 × 1.500 (128 KB)CmdrjamesonCompressed with pngout. Reduced by 66kB (34% decrease).
19:13, 4 avqust 201219:13, 4 avqust 2012 tarixindəki versiyanın miniatür görüntüsü4.000 × 1.500 (194 KB)Mornredone at higher resolution
23:21, 7 aprel 200523:21, 7 aprel 2005 tarixindəki versiyanın miniatür görüntüsü790 × 310 (47 KB)Peo~commonswikiShows three "blocks" with varying surfaces, whereon a point and som lines are "drawn" to demonstrate #euclidian #elliptical and #hyperbolic geometry Rendered using POV-Ray (see http://www.povray.org) and the scene description "code" below, then cropped an

Faylın istifadəsi

Aşağıdakı səhifə bu faylı istifadə edir:

  • Qeyri-Evklid həndəsəsi

Faylın qlobal istifadəsi

Bu fayl aşağıdakı vikilərdə istifadə olunur:

  • ar.wikipedia.org layihəsində istifadəsi
    • حدسية (رياضيات)
    • هندسة لاإقليدية
    • بوابة:رياضيات/صورة مختارة/أرشيف
    • بوابة:رياضيات/صورة مختارة/5
    • فضاء محيط
    • مستخدم:ASammour/بحاجة لصور/فيزياء
  • arz.wikipedia.org layihəsində istifadəsi
    • بديهيه
  • ast.wikipedia.org layihəsində istifadəsi
    • Xeometríes non euclídees
  • ba.wikipedia.org layihəsində istifadəsi
    • Евклидтыҡы булмаған геометрия
  • bg.wikipedia.org layihəsində istifadəsi
    • Неевклидова геометрия
  • cs.wikipedia.org layihəsində istifadəsi
    • Geometrie
  • en.wikipedia.org layihəsində istifadəsi
    • Independence (mathematical logic)
    • Portal:Mathematics/Featured picture archive
    • Ambient space (mathematics)
    • Line–line intersection
    • Portal:Mathematics/Featured picture/2009 01
    • Parallel postulate
  • eo.wikipedia.org layihəsində istifadəsi
    • Neeŭklidaj geometrioj
  • es.wikipedia.org layihəsində istifadəsi
    • Geometría no euclidiana
  • et.wikipedia.org layihəsində istifadəsi
    • Mitteeukleidiline geomeetria
  • fa.wikipedia.org layihəsində istifadəsi
    • حدس
  • fr.wikipedia.org layihəsində istifadəsi
    • Géométrie non euclidienne
  • gl.wikipedia.org layihəsində istifadəsi
    • Espazo ambiente (matemáticas)
  • he.wikipedia.org layihəsində istifadəsi
    • ויקיפדיה:מועדונים/חבורת אוילר/יבוא תמונה מתמטית מהויקי האנגלית
  • hu.wikipedia.org layihəsində istifadəsi
    • Sejtés
  • hy.wikipedia.org layihəsində istifadəsi
    • Ոչ էվկլիդեսյան երկրաչափություն
  • id.wikipedia.org layihəsində istifadəsi
    • Geometri non-Euklides
  • ja.wikipedia.org layihəsində istifadəsi
    • 幾何学
    • 平行線公準
    • 独立性 (数理論理学)
  • ka.wikipedia.org layihəsində istifadəsi
    • არაევკლიდური გეომეტრია
  • kk.wikipedia.org layihəsində istifadəsi
    • Эквидистанта
  • la.wikipedia.org layihəsində istifadəsi
    • Axioma
    • Coniectura
  • nl.wikipedia.org layihəsində istifadəsi
    • Niet-euclidische meetkunde
  • nn.wikipedia.org layihəsində istifadəsi
    • Wikipedia:Dagens danske artikkel/juli 2005
    • Wikipedia:Dagens danske artikkel/3. juli 2005
  • no.wikipedia.org layihəsində istifadəsi
    • Wikipedia:Dagens danske artikkel/juli 2005
    • Wikipedia:Dagens danske artikkel/3. juli 2005
  • pl.wikipedia.org layihəsində istifadəsi
    • Stefan Kulczycki (matematyk)
  • ru.wikipedia.org layihəsində istifadəsi
    • Неевклидова геометрия
  • sv.wikipedia.org layihəsində istifadəsi
    • Diskussion:Axiom
  • tg.wikipedia.org layihəsində istifadəsi
    • Ҳандасаи ноуқлидусӣ
    • Ҳандасаи Лобачевский
  • tt.wikipedia.org layihəsində istifadəsi
    • Евклидныкы булмаган геометрия
  • uk.wikipedia.org layihəsində istifadəsi
    • Неевклідова геометрія
  • uk.wikiquote.org layihəsində istifadəsi
    • Неевклідова геометрія
  • uz.wikipedia.org layihəsində istifadəsi
    • Lobachevskiy geometriyasi
  • vi.wikipedia.org layihəsində istifadəsi
    • Tiên đề Euclid về đường thẳng song song
  • www.wikidata.org layihəsində istifadəsi
    • Q233858

Metaməlumatlar

Bu faylda fotoaparat və ya skanerlə əlavə olunmuş məlumatlar var. Əgər fayl sonradan olunubsa, bəzi parametrlər bu şəkildə göstərilənlərdən fərqli ola bilər.

Üfüqi xətt35,43 dpc
Şaquli xətt35,43 dpc
Faylın dəyişməsi tarixi və vaxtı19:09, 4 avqust 2012
Mənbə — "https://az.wikipedia.org/wiki/Fayl:Euclidian_and_non_euclidian_geometry.png"
Informasiya Melumat Axtar