Neusis-heptagon.png(542 × 563 փիքսել, նիշքի չափը՝ 15 ԿԲ, MIME-տեսակը՝ image/png)

Այս նիշքը տեղադրված է Վիքիպահեստում է և այն կարող է օգտագործվել այլ նախագծերի կողմից։ Վիքիպահեստում նիշքի մասին տեղեկությունների հիմնական մասը ներկայացված է ստորև։

This math image could be re-created using vector graphics as an SVG file. This has several advantages; see Commons:Media for cleanup for more information. If an SVG form of this image is available, please upload it and afterwards replace this template with {{vector version available|new image name}}.


It is recommended to name the SVG file “Neusis-heptagon.svg”—then the template Vector version available (or Vva) does not need the new image name parameter.

Geometric details: OPQR is a unit square. The arc centred on O through Q is drawn, as is the perpendicular bisector of OP. The en:Neusis construction involves finding unit interval AB through P with A on the perpendicular bisector and B on the arc. Angle PAO is the interior angle of a heptagon. The remainder of the construction can be carried out with ruler and compass. (Two of the vertices lie on the lines OR and PQ.)

Ամփոփում

Նկարագրում Neusis construction of a regular heptagon
Թվական
Աղբյուր Բեռնողի սեփական աշխատանք
Հեղինակ User:AndrewKepert
Իրավունքներ
(Նիշքի վերաօգտագործումը)
GFDL and CC. GPL source included

The en:MetaPost source below is a bit of a cheat.

Արտոնագրում

Ես, այս աշխատանքի հեղինակային իրավունքների տերը, ներկա հրատարակում եմ սրա հետևյալ լիցենզիաների պայմաններով
GNU head Այս վավերագրման պատճենահանման, տարածման և/կամ ձևափոխման թույլտվություն կամ լիցենզիայի GNU FDL պայմաններով 1.2 մեկնակերպի կամ ավելի ուշ, հրատարակված Ազատ ծրագրային ապահովության հիմնադրամում, առանց անփոփոխելի հատվածների, առանց բնագիրների, որոնք տեղադրված են առաջին և վերջին շապիկներում: Լիցենզիայի պատճենը գտնվում է GNU Free Documentation License հատվածում:
w:en:Creative Commons
հղում համանման տարածում
Այս նիշքը հասանելի է Creative Commons Attribution-Share Alike 3.0 Unported արտոնագրի ներքո:
Դուք ազատ եք՝
  • կիսվել ստեղծագործությամբ – պատճենել, տարածել և փոխանցել այս աշխատանքը։
  • վերափոխել – ադապտացնել աշխատանքը
Պահպանելով հետևյալ պայմանները'
  • հղում – Դուք պետք է նշեք հեղինակի (իրավատիրոջ) հղումը:
  • համանման տարածում – Եթե դուք ձևափոխում եք, փոխակերպում, կամ այս աշխատանքի հիման վրա ստեղծում եք նոր աշխատանք, ապա ձեր ստեղծածը կարող է տարածվել միայն նույն կամ համարժեք թույլատրագրով։
Այս արտոնգրության հատկանիշը ավելացված է տվյալ նիշքին որպես GFDL արտոնագրի բարեփոխում:
w:en:Creative Commons
հղում համանման տարածում
This file is licensed under the Creative Commons Attribution-Share Alike 2.5 Generic, 2.0 Generic and 1.0 Generic license.
Դուք ազատ եք՝
  • կիսվել ստեղծագործությամբ – պատճենել, տարածել և փոխանցել այս աշխատանքը։
  • վերափոխել – ադապտացնել աշխատանքը
Պահպանելով հետևյալ պայմանները'
  • հղում – Դուք պետք է նշեք հեղինակի (իրավատիրոջ) հղումը:
  • համանման տարածում – Եթե դուք ձևափոխում եք, փոխակերպում, կամ այս աշխատանքի հիման վրա ստեղծում եք նոր աշխատանք, ապա ձեր ստեղծածը կարող է տարածվել միայն նույն կամ համարժեք թույլատրագրով։
Կարող եք ընտրել այս թույլատրագրերից ցանկացածը։

Metapost source

The Metapost source for this file. All done via command line on MacOSX:

  • Metapost (mpost command from teTeX)
  • \convertMPtoPDF TeX command from supp-pdf.tex, processed via pdfTeX
  • ghostscript to a png at 1200x1200.

I hereby make this source available under the GPL version 2 or later.

u=2cm;
path unitcircle;   unitcircle=fullcircle scaled 2u;
thick=1mm;
thin=0.25mm;
transform heptT;
def drawruler(expr p,q) =
    path ruler[];
    ruler0:=unitsquare xscaled abs(p-q) yscaled .1u rotated angle(q-p) shifted p;
    ruler1:=unitsquare yscaled 0.5 shifted 0.25up
        xscaled abs(p-q) yscaled .1u rotated angle(q-p) shifted p;
    fill ruler0 withcolor (1,1,.5);
    fill ruler1 withcolor (.9,.9,.3);
    draw ruler0 withpen pencircle scaled 0.25;
    enddef;
beginfig(77)
    pickup  pencircle scaled thin;
    z0=(0,0);      z0d=(0,.4u);
    z1=(-0.5u,0);  z1l=(.5u-u*sqrt(2),0);
    z2=(0.5u,0);
    z3=(.5u,-u);   z3u=(.5u,-u*sqrt(2));
    z4=(-.5u,-u);
    z5=(0,-u);
    z6=(0,whatever)=z1+whatever*dir(180/7);
    z7=z6-u*dir(180/7);
    drawruler(z6,z7);
    drawruler(z3,z4);
    for i = 0 upto 7:
        z[i]vtx=dir(360i/7);
    endfor;
    xxpart heptT= yypart heptT;
    xypart heptT=-yxpart heptT;
    for i = 6,7: z[i] = z[i]vtx transformed heptT; endfor
    draw (for i = 0 upto 6: z[i]vtx -- endfor cycle) transformed heptT dashed evenly withcolor blue;
    draw z1--z2--z3--z4--cycle;
    draw z1l--z1;
    draw z0d--z5;
    draw z2--z4 dashed evenly;
    draw z6--z7;
    label.urt("O",z2);
    label.ulft("A",z6);
    label.ulft("P",z1);
    label.llft("Q",z4);
    label.rt("R",z3);
    label.lft("B",z7);
    draw subpath (4,5) of unitcircle scaled (sqrt(2)) shifted z2;
    for i = 1,2,6,7,3,4:
        if known(x[i]):
            drawdot z[i] withpen pencircle scaled thick;
        fi
    endfor
endfig;    
bye

See also

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

պատկերված

19 Մայիսի 2006

Նիշքի պատմություն

Մատնահարեք օրվան/ժամին՝ նիշքի այդ պահին տեսքը դիտելու համար։

Օր/ԺամՄանրապատկերՕբյեկտի չափըՄասնակիցՄեկնաբանություն
ընթացիկ08:22, 19 Մայիսի 200608:22, 19 Մայիսի 2006 տարբերակի մանրապատկերը542 × 563 (15 ԿԲ)AndrewKepert~commonswiki{{Information| |Description=Neusis construction of a regular heptagon |Source=own work |Date=19 May 2006 |Author=User:AndrewKepert |Permission=GFDL and CC. GPL source included }}

Հետևյալ էջը հղվում է այս նիշքին՝

Նիշքի համընդհանուր օգտագործում

Հետևյալ այլ վիքիները օգտագործում են այս նիշքը՝