import math
import matplotlib.pyplot as plt
#------------------------------------
def setup_T(min_t, max_t, dt):
T = []; t = min_t
while t <= max_t:
T.append(t)
t += dt
if t != max_t: T.append(max_t)
return T
#------------------------------------
def plot(x, y, min_t, max_t, dt):
T = setup_T(min_t, max_t, dt)
X = [x(t) for t in T]
Y = [y(t) for t in T]
plt.plot( X, Y, 'blue' )
#====================================
Prog-02 : Beautiful Parametric Equation
6030027621 กฤษณะ อุษณกุล
$ x(t)=cos(9t)-cos^{3}(100t) $
$ y(t)=sin(200t)-sin^{4}(9t) $
โปรแกรมนี้วาดรูปได้ซับซ้อน และสวยงาม
ผมเป็นคนเลือกสมการ เขียนนิพจน์ และเขียนโปรแกรมด้วยตนเอง
def x(t):
xt = math.cos(9*t) - (math.cos(100*t))**3
return xt
def y(t):
yt = math.sin(200*t) - (math.sin(9*t))**4
return yt
plot(x,y,-3,3,0.0001)
plt.show()
Prog-02: Beautiful Parametric Equation
6030048821 กิตติธัช อัประไมยทรัพย์
$x(t)=sin(t)-sin(2.3t)$
$y(t)=cos(t)$
โปรแกรมนี้วาดลวดลายเหมือนโอ่ง
ผมเป็นผู้เลือกสมการข้างล่างและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.sin(t)-math.sin(2.3*t)
return xt
def y(t):
yt = math.cos(t)
return yt
plot(x, y, 0, 100*math.pi, 0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6030182121 ณัฏฐนิช ยิ้มดี
$x(t)=cos(t)+\frac{1}{1.4}cos(110t)$
$y(t)=sin(t)+\frac{1}{1.4}sin^{3}(112t)$
โปรแกรมนี้สามารถpoltกราฟได้ละเอียดมาก แต่เวลาที่ใช้ประมวลผลก็จะมากตามไปด้วย
ขอยืนยันว่าเป็นผู้เลือกและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง ลองplotหลายรูปและเลือกรูปกราฟที่คิดว่าดีที่สุดของตัวเองมาแล้วค่ะ
def x(t) :
xt = math.cos(t)+((1/1.4)*math.cos(110*t))
return xt
def y(t) :
yt = math.sin(t)+((1/1.4)*(math.sin(112*t)**3))
return yt
plot( x, y, -7,7, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6030924521 สันติภาพ พูลสวัสดิ์
$ x(t)= cos(7t)cos(11t) $
$ y(t)= cos(7t)sin(11t) $
วาดสวย
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(7*t)*math.cos(11*t)
return xt
def y(t):
yt = math.cos(7*t)*math.sin(11*t)
return yt
plot(x, y, 0, 2*math.pi,0.008)
plt.show()
Prog-02: Beautiful Parametric Equation
6031508321 นางสาวณัฎฐา กัณฑธนกิจ
$x(t)=frac{7sin(7.32t)}{1+cos(1.42t)^2}$
$y(t)=7sin(7.32t)^4cos(1.42t)$
โปรแกรมนี้ลวดลายน่ารักสวยงามเหมือนดอกไม้
ดิฉันเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = 7*math.sin(7.32*t)/(1+math.cos(1.42*t)**2)
return xt
def y(t):
yt = 7*(math.sin(7.32*t)**4)*math.cos(1.42*t)
return yt
plot(x, y, -6, 6, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6145072428 นันทิชา เมฆสุวรรณ
$x = 6sin(13.58t)round(sqrt(cos(cos(7.4t))),0)$
$y = 6power(cos(13.58t),4)sin(sin(7.4t))$
โปรแกรมนี้ดูพลิ้ว ๆ นุ่ม ๆ น่ารักดี ทีแรกลังเลกับอีกสมการ แต่อีกสมการดูแล้วไม่ satisfy มากเท่าค่ะ5555
เราเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเองแน่นอนค่ะ เย่
def x(t):
xt = 6*math.sin(13.58*t)*round(math.sqrt(math.cos(math.cos(7.4*t))),0)
return xt
def y(t):
yt = 6*pow(math.cos(13.58*t),4)*math.sin(math.sin(7.4*t))
return yt
plot(x, y, -9, 9, 0.0001)
plt.show()
Prog-02: Beautiful Parametric Equation
6230027321 กษิดิ์เดช วะณานิชย์
$x(t)=3cos(cos(2.9t))(1+(cos(3t))^6)$
$y(t)=3(sin(2.9t))^3$
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตา
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = 3*math.cos(math.cos(2.9*t))*(1+(math.cos(3*t))**6)
return xt
def y(t):
yt = 3*(math.sin(2.9*t))**3
return yt
plot(x, y, -12, 12, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6230032421 นายกสานติ์ อภิกุลวณิช
$x(t)=4*math.cos(-11*t/4)+7*math.cos(t)$
$y(t)=4*math.sin(-11*t/4)+7*math.sin(t)$
โปรแกรมนี้รับรองว่าจะประทับใจ
ผมเป็นผู้เลือกสมการพาราเมตริกซ์นี้ดวนตนเอง
def x(t):
xt = 4*math.cos(-11*t/4)+7*math.cos(t)
return xt
def y(t):
yt = 4*math.sin(-11*t/4)+7*math.sin(t)
return yt
plot(x, y, 0, 16*math.pi, 0.05)
plt.show()
Prog-02: Beautiful Parametric Equation
6230070221 นางสาวจิรัชฌา สิมธาราแก้ว
$ x(t) = 2t+2cos(14t)+\frac{1}{t} $
$ y(t) = 2t+2sin(15t)+ \frac{1}{t} $
โปรแกรมนี้วาดลวดลายที่เหมือนข้องดักปลา
ดิฉันเป็นผู้เลือกสมการข้างบนแและเป็นผู้เขียนนิพจน์คณิตศาสตร์นี้ด้วยตัวเอง
def x(t):
xt = (2*t)+(2*math.cos(14*t))+(1/t)
return xt
def y(t):
yt = (2*t)+(2*math.sin(15*t))+(1/t)
return yt
plot(x, y, 1, 14, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6230103321 นางสาวชัญญานุช สมจิตต์
$x(t)=sin(t)[e^(cos(t))-2cos(4t)-((sin(t/12))^5)]$
$y(t)=cos(t)[e^(cos(t))-2cos(4t)-((sin(t/12))^5)]$
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตำ
หนูเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.sin(t)*((math.e**(math.cos(t)))-(2*math.cos(4*t))-((math.sin(t/12))**5))
return xt
def y(t):
yt = math.cos(t)*((math.e**(math.cos(t)))-(2*math.cos(4*t))-((math.sin(t/12))**5))
return yt
plot(x, y, 0, 12*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6230176121 นาย ณัฐพินาย จิตต์บรรจง
$ x(t)=cos(2t)^3 - cos(4t)sin(6t) $
$ y(t)=sin(2t)^4 - sin(4t)^4 $
รูปที่ได้จากโปรแกรมนี้สวยมากๆครับ
ผมเป็นผู้เขียนนิพจน์คณิตศาสตร์นี้ด้วยตัวเอง
def x(t):
xt = math.cos(2*t)**3-math.cos(4*t)*math.sin(6*t)
return xt
def y(t):
yt = math.sin(2*t)**4-math.sin(4*t)**4
return yt
plot(x, y, -1, 100*math.pi, 0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6230251521 ธันวา นิติกิตเจริญวงศ์
$ x(t) = cos(t)-cos(100t)sin(t) $
$ y(t) = 2sin(t)-sin(100t) $
รูปนี้ดูมีความเป็นธรรมมะ คือการวงวนทุกสิ่งล้วนเป็นอนิจจัง
ผมเลือกและเขียนสมการนี้ด้วยตัวเองครับ
def x(t):
xt =math.cos(t)-math.cos(100*t)*math.sin(t)
return xt
def y(t):
yt =2*math.sin(t)-math.sin(100*t)
return yt
plot(x, y, 0, 2*math.pi, 0.0001)
plt.show()
Prog-02: Beautiful Parametric Equation
6230305821 นางสาวปฐมาวดี สุวรรณรัตน์
$x(t)=((\sin(1.2t))^{2}+(\cos(6t))^{3})\cos(t)$
$y(t)=((\sin(1.2t))^{2}+(\cos(6t))^{3})\sin(t)$
โปรแกรมนี้วาดรูปร่างคล้ายปีกผีเสื้ออันสวยสดงดงามและไม่มีใครเหมือน
หนูเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเองค่ะ
def x(t):
xt = (math.sin(1.2*t)**2 + math.cos((6*t))**3)*math.cos(t)
return xt
def y(t):
yt = (math.sin(1.2*t)**2 + math.cos((6*t))**3)*math.sin(t)
return yt
plot(x, y, 0, 10*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6230450021 รวิกานต์ บุญสนิท
$x(t)=4cos(-11t/4)+7cos(t)$
$y(t)=4sin(-11t/4)+7sin(t)$
โปรแกรมนี้สามารถวาดรูปจากสมการยากๆที่กำหนดให้ได้ และได้รูปที่สวยงาม
ดิฉันเป็นู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศสตร์ด้วยตัวเอง
def x(t):
xt = 4*math.cos(-11*t/4)+7*math.cos(t)
return xt
def y(t):
yt = 4*math.sin(-11*t/4)+7*math.sin(t)
return yt
plot(x, y, 0, 8*math.pi,0.02)
plt.show()
Prog-02: Beautiful Parametric Equation
6230585121 นางสาวอภิษฎา เกษมสุพัฒน์
$x(t)=cos(8t)cos(3t)$
$y(t)=cos(8t)sin(3t)$
โปรแกรมนี้วาดลวดลายดอกไม้ซึ่งกลีบดอกเรียงตัวอย่างสม่ำเสมอ ดูเรียบง่ายแต่ก็สวยงาม
ดิฉันเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(8*t)*math.cos(3*t)
return xt
def y(t):
yt = math.cos(8*t)*math.sin(3*t)
return yt
plot(x, y, 0, 2*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231001121 นายก่อพงศ์ นฤนาทดำรงค์
$ x(t) = cos(t)-cos(100t)sin(t) $
$ y(t) = 2sin(t)-sin(100t) $
โปรแกรมนี้วาดลวดรายได้สะดุดตาและค่อนข้างทำเครื่องกระตุกในระดับนึง
ผมเป็นคนเลือกสมการข้างต้นและเขียนนิพจฺน์คณิตศาสตร์ด้วยตนเอง แน่นอนครับ
def x(t):
xt = math.cos(t)-math.cos(100*t)*math.sin(t)
return xt
def y(t):
yt = 2*math.sin(t)-math.sin(t)
return yt
plot(x, y, 0 , 2*math.pi , 0.00001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231002821 ชวิน กาญจนานนท์
$x(t)=4*math.cos(-11*t/4)+7*math.cos(t)$
$y(t)=4*math.sin(-11*t/4)+7*math.sin(t)$
เป็นกราฟที่สวยครับ
ผมเลือกและทำสมการนี้ด้วยตัวเองครับ
def x(t):
xt = 4*math.cos(-11*t/4)+7*math.cos(t)
return xt
def y(t):
yt = 4*math.sin(-11*t/4)+7*math.sin(t)
return yt
plot(x, y,-100,100,0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6231003421 นางสาวฐิตาภา ไทยปรีชา
$x(t)=4cos((-11/4)t)+(7cos(t))$
$y(t)=4sin((-11/4)t)+(7sin(t))$
โปรแกรมนี้หนูวาดเองค่า สวยสุดๆใจเต้นแรงไม่หยุด
ดิฉันเป็นผู้เลือกสมการด้านบนเองค่ะและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเองอีกด้วยค่าาาา
def x(t):
xt = 4*math.cos((-11/4)*t)+(7*math.cos(t))
return xt
def y(t):
yt = 4*math.sin((-11/4)*t)+(7*math.sin(t))
return yt
plot(x, y, -50, 50, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231005721 นายณัฐพัฒน์ หาญวรเกียรติ
$ x = cos(t) – cos^3(200t)$
$ y = sin(200t) – sin^4(2t)$
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตา
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(t)-math.cos(200*t)**3
return xt
def y(t):
yt = math.sin(200*t)-math.sin(2*t)**4
return yt
plot(x, y, 0, 2*math.pi, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231006321 นางสาวณิชภัทร บุญเดชานันทน์
$ LaTex code ของสมการ x(t) $
$ LaTex code ของสมกําร y(t) $
โปรแกรมที่วาดลวดลายได้สวยงามมากๆ
ข้าพเจ้าเป็นคนเลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตนเอง
def x(t):
xt = math.cos(t)-((math.cos(200*t))**3)
return xt
def y(t):
yt = math.sin(t)-((math.sin(150*t))**4)
return yt
plot(x, y, -5, 5, 0.00001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231007021 นายธนพล บำรุงศรี
$x(t) = (2/(math.pi))*math.cos((t*(16 - 1/(math.pi)))/1/(math.pi)) + ((16 - 1/(math.pi))*math.cos(t))$
$y(t) = (16-(1/(math.pi)))*math.sin(t) - (2/(math.pi))*math.sin((t*(16 - (1/(math.pi))))/(1/(math.pi)))$
โปรแกรมนี้วำดลวดลำยอ่อนชอ้ยสวยงำมสะดุดตำ
ผมเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt = (2/(math.pi))*math.cos((t*(16 - 1/(math.pi)))/(1/(math.pi))) + ((16 - 1/(math.pi))*math.cos(t))
return xt
def y(t):
yt = (16-(1/(math.pi)))*math.sin(t) - (2/(math.pi))*math.sin((t*(16 - (1/(math.pi))))/(1/(math.pi)))
return yt
plot(x, y, -10, 10, 0.0001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231009221 เนติธร พัฒชนะ
$x(t)= sin(t)*( e**cos(t) - 3*cos(5t) - (sin(t/12))**5 )$
$y(t)= cos(t)*( e**cos(t) - 5*cos(5t) - (sin(t/12))**5 )$
ปลาดาวที่สุดแสนจะน่ารัก
ผมเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt = math.sin(t)*( math.exp(math.cos(t)) - 3*math.cos(5*t) - ((math.sin(t/12))**5) )
return xt
def y(t):
yt = math.cos(t)*( math.exp(math.cos(t)) - 5*math.cos(5*t) - ((math.sin(t/12))**5) )
return yt
plot(x, y, -6, 6, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231011421 พงศ์ภีระ โอฬารพุฒิวัฒน์
$xt = 7*((math.sin(7.24*t))/(1+(math.cos(3.56*t)**2)))$
$yt = 7*math.cos(3.56*t)*(math.sin(7.24*t)**4)$
ข้อความบรรยายความดีเลิศขุองโปรแกรม
ข้อความยืนยันว่า นิสิตเป็นผู้เลือกและเขียนนิพจน์คณิตศาสตร์ของสมการที่เลือก
def x(t):
xt = 7*((math.sin(7.24*t))/(1+(math.cos(3.56*t)**2)))
return xt
def y(t):
yt = 7*math.cos(3.56*t)*(math.sin(7.24*t)**4)
return yt
plot(x, y, -17,17, 0.001)
plt.show()
Prog-02:Beautiful Parametric Equation
6231013721 พิชญุตม์ หาญธนสาร
$ x(t)=cos(7t)cos(11t) $
$ y(t)=cos(7t)sin(11t) $
โปรเเกรมนี้มีความพิเศษสามารถนำคณิตศาสตร์มาประยุกต์ใช้กับศิลปะได้
ผมขอยืนยันว่าเป็นผู้เลือกสมการเเละเขียนนิพจน์คณิตศาสตร์ด้วยตนเอง
def x(t):
xt = math.cos(7*t) * math.cos(11*t)
return xt
def y(t):
yt = math.cos(7*t) * math.sin(11*t)
return yt
plot(x, y, 0, 2*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231014321 ไพสิฐ บัวบาน
$x(t)=cos(7t)cos(3t)$
$y(t)=cos(7t)sin(3t)$
การเขียนโค้ดที่มีความสวยงาม มีความคล้ายรูปดอกไม้หรือการนำรูปหัวใจมาประกอบกัน
ไพสิฐ เป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตนเอง
def x(t):
xt = (math.cos(7*t))*(math.cos(3*t))
return xt
def y(t):
yt = (math.cos(7*t))*(math.sin(3*t))
return yt
plot(x, y, 0, 2*math.pi, 0.008)
plt.show()
Prog-02: Beautiful Parametric Equation
6231015021 มงคลพัฒน์ ปรีชาเลิศศิลป์
$x(t)=t+tcos(11.4t)$
$y(t)=t+tsin(11.4t)$
โปรแกรมนี้วาดรูปที่เป็น3มิติ มีความหลอกตา
ผมเเอาสมการมาจากในเน็ต และได้ทำการเปลี่ยนเลขเพื่อทำให้กราฟออกมาสวยยิ่งขึ้น
def x(t):
xt = t+t*math.cos(11.4*t)
return xt
def y(t):
yt = t+t*math.sin(11.4*t)
return yt
plot(x,y, 0.2, 14, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231016621 นางสาวมีน เพียรคำพร
$ x(t) = ((-721/4)\sin(t))) + ((196/3)\sin(2t)) - ((86/3)\sin(3t)) - ((131/2)\sin(4t)) + ((477/14)\sin(5t)) + ((27)\sin(6t)) - ((29/2)\sin(7t)) + ((68/5)\sin(8t)) + ((1/10)\sin(9t)) + ((23/4)\sin(10t)) - ((19/2)\sin(12t)) - ((85/21)\sin(13t)) + ((2/3)\sin(14t)) + ((27/5)\sin(15t)) + ((7/4)\sin(16t)) + ((17/9)\sin(17t)) - ((4)\sin(18t)) - ((1/2)\sin(19t)) + ((1/6)\sin(20t)) + ((6/7)\sin(21t)) - ((1/8)\sin(22t)) + ((1/3)\sin(23t)) + ((3/2)\sin(24t)) + ((13/5)\sin(25t)) + (\sin(26t)) - ((2)\sin(27t)) + ((3/5)\sin(28t)) - ((1/5)\sin(29t)) + ((1/5)\sin(30t)) + ((2337/8)\cos(t)) - ((43/5)\cos(2t)) + ((322/5)\cos(3t)) - ((117/5)\cos(4t)) - ((26/5)\cos(5t)) - ((23/3)\cos(6t)) + ((143/4)\cos(7t)) - ((11/4)\cos(8t)) - ((31/3)\cos(9t)) - ((13/4)\cos(10t)) - ((9/2)\cos(11t)) + ((41/20)\cos(12t)) + ((8)\cos(13t)) + ((2/3)\cos(14t)) + ((6)\cos(15t)) + ((17/4)\cos(16t)) - ((3/2)\cos(17t)) - ((29/10)\cos(18t)) + ((11/6)\cos(19t)) + ((12/5)\cos(20t)) + ((3/2)\cos(21t)) + ((11/12)\cos(22t)) - ((4/5)\cos(23t)) + (\cos(24t)) + ((17/8)\cos(25t)) - ((7/2)\cos(26t)) - ((5/6)\cos(27t)) - ((11/10)\cos(28t)) + ((1/2)\cos(29t)) - ((1/5)\cos(30t)) $
$ y(t) = ((-637/2)\sin(t)) - ((188/5)\sin(2t)) - ((11/7)\sin(3t)) -((12/5)\sin(4t)) + ((11/3)\sin(5t)) - ((37/4)\sin(6t)) + ((8/3)\sin(7t)) + ((65/6)\sin(8t)) - ((32/5)\sin(9t)) - ((41/4)\sin(10t)) - ((38/3)\sin(11t)) - ((47/8)\sin(12t)) + ((5/4)\sin(13t)) - ((41/7)\sin(14t)) - ((7/3)\sin(15t)) - ((13/7)\sin(16t)) + ((17/4)\sin(17t)) - ((9/4)\sin(18t)) + ((8/9)\sin(19t)) + ((3/5)\sin(20t)) - ((2/5)\sin(21t)) + ((4/3)\sin(22t)) + ((1/3)\sin(23t)) + ((3/5)\sin(24t)) - ((3/5)\sin(25t)) + ((6/5)\sin(26t)) - ((1/5)\sin(27t)) + ((10/9)\sin(28t)) + ((1/3)\sin(29t)) - ((3/4)\sin(30t)) - ((125/2)\cos(t)) - ((521/9)\cos(2t)) - ((359/3)\cos(3t)) + ((47/3)\cos(4t)) - ((33/2)\cos(5t)) - ((5/4)\cos(6t)) + ((31/8)\cos(7t)) + ((9/10)\cos(8t)) - ((119/4)\cos(9t)) - ((17/2)\cos(10t)) + ((22/3)\cos(11t)) + ((15/4)\cos(12t)) - ((5/2)\cos(13t)) + ((19/6)\cos(14t)) + ((7/4)\cos(15t)) + ((31/4)\cos(16t)) - (\cos(17t)) + ((11/10)\cos(18t)) - ((2/3)\cos(19t)) + ((13/3)\cos(20t)) - ((5/4)\cos(21t)) + ((2/3)\cos(22t)) + ((1/4)\cos(23t)) + ((5/6)\cos(24t)) + ((3/4)\cos(26t)) -((1/2)\cos(27t)) - ((1/10)\cos(28t)) - ((1/3)\cos(29t)) - ((1/19)\cos(30t)) $
คราวที่แล้วหนูทำรูปหนู คราวนี้เป็นหนูทำรูปแมวค่า (ยิ่งบีบรูปเข้ามายิ่งเหมือนนะค้า)
หนูเป็นผู้เลือกสมการข้าบนและเขียนนิพจน์คณิตศาสตร์ด้วยตนเองค่า
def x(t):
xt = ((-721/4)*math.sin(t)) + ((196/3)*math.sin(2*t)) - ((86/3)*math.sin(3*t)) - ((131/2)*math.sin(4*t)) + ((477/14)*math.sin(5*t)) + ((27)*math.sin(6*t)) - ((29/2)*math.sin(7*t)) + ((68/5)*math.sin(8*t)) + ((1/10)*math.sin(9*t)) + ((23/4)*math.sin(10*t)) - ((19/2)*math.sin(12*t)) - ((85/21)*math.sin(13*t)) + ((2/3)*math.sin(14*t)) + ((27/5)*math.sin(15*t)) + ((7/4)*math.sin(16*t)) + ((17/9)*math.sin(17*t)) - ((4)*math.sin(18*t)) - ((1/2)*math.sin(19*t)) + ((1/6)*math.sin(20*t)) + ((6/7)*math.sin(21*t)) - ((1/8)*math.sin(22*t)) + ((1/3)*math.sin(23*t)) + ((3/2)*math.sin(24*t)) + ((13/5)*math.sin(25*t)) + (math.sin(26*t)) - ((2)*math.sin(27*t)) + ((3/5)*math.sin(28*t)) - ((1/5)*math.sin(29*t)) + ((1/5)*math.sin(30*t)) + ((2337/8)*math.cos(t)) - ((43/5)*math.cos(2*t)) + ((322/5)*math.cos(3*t)) - ((117/5)*math.cos(4*t)) - ((26/5)*math.cos(5*t)) - ((23/3)*math.cos(6*t)) + ((143/4)*math.cos(7*t)) - ((11/4)*math.cos(8*t)) - ((31/3)*math.cos(9*t)) - ((13/4)*math.cos(10*t)) - ((9/2)*math.cos(11*t)) + ((41/20)*math.cos(12*t)) + ((8)*math.cos(13*t)) + ((2/3)*math.cos(14*t)) + ((6)*math.cos(15*t)) + ((17/4)*math.cos(16*t)) - ((3/2)*math.cos(17*t)) - ((29/10)*math.cos(18*t)) + ((11/6)*math.cos(19*t)) + ((12/5)*math.cos(20*t)) + ((3/2)*math.cos(21*t)) + ((11/12)*math.cos(22*t)) - ((4/5)*math.cos(23*t)) + (math.cos(24*t)) + ((17/8)*math.cos(25*t)) - ((7/2)*math.cos(26*t)) - ((5/6)*math.cos(27*t)) - ((11/10)*math.cos(28*t)) + ((1/2)*math.cos(29*t)) - ((1/5)*math.cos(30*t))
return xt
def y(t):
yt = ((-637/2)*math.sin(t)) - ((188/5)*math.sin(2*t)) - ((11/7)*math.sin(3*t)) -((12/5)*math.sin(4*t)) + ((11/3)*math.sin(5*t)) - ((37/4)*math.sin(6*t)) + ((8/3)*math.sin(7*t)) + ((65/6)*math.sin(8*t)) - ((32/5)*math.sin(9*t)) - ((41/4)*math.sin(10*t)) - ((38/3)*math.sin(11*t)) - ((47/8)*math.sin(12*t)) + ((5/4)*math.sin(13*t)) - ((41/7)*math.sin(14*t)) - ((7/3)*math.sin(15*t)) - ((13/7)*math.sin(16*t)) + ((17/4)*math.sin(17*t)) - ((9/4)*math.sin(18*t)) + ((8/9)*math.sin(19*t)) + ((3/5)*math.sin(20*t)) - ((2/5)*math.sin(21*t)) + ((4/3)*math.sin(22*t)) + ((1/3)*math.sin(23*t)) + ((3/5)*math.sin(24*t)) - ((3/5)*math.sin(25*t)) + ((6/5)*math.sin(26*t)) - ((1/5)*math.sin(27*t)) + ((10/9)*math.sin(28*t)) + ((1/3)*math.sin(29*t)) - ((3/4)*math.sin(30*t)) - ((125/2)*math.cos(t)) - ((521/9)*math.cos(2*t)) - ((359/3)*math.cos(3*t)) + ((47/3)*math.cos(4*t)) - ((33/2)*math.cos(5*t)) - ((5/4)*math.cos(6*t)) + ((31/8)*math.cos(7*t)) + ((9/10)*math.cos(8*t)) - ((119/4)*math.cos(9*t)) - ((17/2)*math.cos(10*t)) + ((22/3)*math.cos(11*t)) + ((15/4)*math.cos(12*t)) - ((5/2)*math.cos(13*t)) + ((19/6)*math.cos(14*t)) + ((7/4)*math.cos(15*t)) + ((31/4)*math.cos(16*t)) - (math.cos(17*t)) + ((11/10)*math.cos(18*t)) - ((2/3)*math.cos(19*t)) + ((13/3)*math.cos(20*t)) - ((5/4)*math.cos(21*t)) + ((2/3)*math.cos(22*t)) + ((1/4)*math.cos(23*t)) + ((5/6)*math.cos(24*t)) + ((3/4)*math.cos(26*t)) -((1/2)*math.cos(27*t)) - ((1/10)*math.cos(28*t)) - ((1/3)*math.cos(29*t)) - ((1/19)*math.cos(30*t))
return yt
plot(x, y, 0, 2*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231018921 วรรณณรงค์ ชูศรีชัย
$ x(t)=\cos(7 t)\cos(3 t)$
$ y(t)=\cos(7 t)\sin(3 t)$
โปรแกรมนี่สวยสุด
ผมเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(7*t)*math.cos(3*t)
return xt
def y(t):
yt = math.cos(7*t)*math.sin(3*t)
return yt
plot(x, y, -9, 0, 0.03)
plt.show()
Prog-02: Beautiful Parametric Equation
6231020021 นายวศิน วิริยะพรชัย
$x(t) = cos(7t)cos(11t)$
$y(t) = cos(7t)sin(11t)$
โปรแปรมนี้มีความซับซ้อนของลายเส้น มีความละเอียดสูง
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(7*t)*math.cos(11*t)
return xt
def y(t):
yt = math.cos(7*t)*math.sin(11*t)
return yt
plot(x, y, 10, 100*math.pi, 1)
plt.show()
Prog-02: Beautiful Parametric Equation
6231021721 นายสุขุม จรางเดช
$x(t) = \cos(t)-\cos(t)\sin(60t)$
$y(t) = 2\sin(58t)-\sin(60t)$
โปรแกรมนี้ดีเลิศเลย!!
ผมเป็นผู้เลือกและเขียนนิพจน์ของสมการด้วยตัวเองค้าบบบ
def x(t):
xt = 1*math.cos(1*t)-math.cos(1*t)*math.sin(60*t)
return xt
def y(t):
yt = 2*math.sin(58*t)-math.sin(60*t)
return yt
plot(x, y, -1, 2*math.pi, 0.0001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231102921 นายเกรียงศักดิ์์ บุญวิเชียร
$x(t)= Cos(125t) - Cos(16t)^3$
$y(t)= Sin(125t) - Sin(16t)^3$
โปรแกรมนี้วาดลวดลายไม่อ่อนช้อยแต่คาดว่าสวยงามสะดุดตา
def x(t):
xt = math.cos(125*t) - math.cos(16*t)**3
return xt
def y(t):
yt = math.sin(125*t) - math.sin(16*t)**3
return yt
plot(x, y, -6, 6, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231103521 นายจีรภัทร กาญจนอุดมการ
$ x(t)=cos(t)-cos(100t)sin(t) $
$ y(t)=2sin(t)-sin(100t) $
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตา #
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง #
def x(t):
xt = math.cos(t)-math.cos(100*t)*math.sin(t)
return xt
def y(t):
yt = 2*math.sin(t)-math.sin(100*t)
return yt
plot(x, y, 0, 2*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231106421 นางสาวญาดา พิพัฒน์วรชัย
$x(t)=cos(7t)cos(3t)$
$y(t)=cos(7t)sin(3t)$
โปรแกรมนี้วาดรูปได้สวยงามมาก
ยืนยันว่านิสิตเป็นผู้เลือกและเขียนนิพจน์คณิตศาสตร์ของสมการที่เลือก
def x(t):
xt = math.cos(7*t)* \
math.cos(3*t)
return xt
def y(t):
yt = math.cos(7*t)* \
math.sin(3*t)
return yt
plot(x, y, 0, 2*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231108721 ณัฐญา กังสนารักษ์
$x(t)= 4cos(-11t/4)+7cos(t)$
$y(t)= 4sin(-11t/4)+7sin(t)$
โปรแกรมนี้เป็นโปรแกรมที่ฉลาดมากสามารถสร้างรูปขึ้นมาได้ตามต้องการ
รูปนี้เป็นรูปจากจินตนาการ
ข้าพเจ้าเป็นผู้เลือก และ เขียนนิพจน์คณิตศาสตร์จากสมการที่เลือกออกมาเองทั้งหมด
def x(t):
xt = 4 * math.cos(-11 * t / 4) + 7 * math.cos(t)
return xt
def y(t):
yt = 4 * math.sin(-11 * t / 4) + 7 * math.sin(t)
return yt
plot(x, y, 0, 8 * math.pi, 0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6231109321 ณัฐภัทร ศุภรัตน์โสภิณ
$x(t)=Cos(95*t)-Cos(4*t)^3$
$y(t)=Sin(90*t)-Sin(3*t)^3$
โปรแกรมนี้อาจไม่ได้มีความสวยงามนัก แต่ทำด้วยใจของนิสิตครับ
ผมเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt =math.cos(95*t)-math.cos(4*t)
return xt
def y(t):
yt = math.sin(90*t)-math.sin(3*t)**3
return yt
plot(x, y, -10, 10, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231110921 นางสาวณัฐศิริ รัตนโชนะ
$x(t)=cos(20t)+(cos(0))/2+(sin(17t))/3$
$y(t)=sin(20t)+(sin(0))/2+(sin(17t))/3$
โปรแกรมนี้เหมือนโดนัทน่ารับประทาน ณ เวลา 23.53 น.
ฉันเลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์เองจริงค่ะ จริงจังไม่จ้อจี้ค่ะ
def x(t):
xt = math.cos(20*t)+((math.cos(0*t))/2)+((math.sin(17*t))/3)
return xt
def y(t):
yt = math.sin(20*t)+((math.sin(0*t))/2)+((math.cos(17*t))/3)
return yt
plot(x, y, 0, 2*math.pi,0.01 )
plt.show()
Prog-02: Beautiful Parametric Equation
6231113821 นายธนภูมิ ศรีธัญรัตน์
$x(t)= math.cos(7*t) * math.cos(11*t)$
$y(t)= math.cos(7*t) * math.sin(11*t)$
โปรแกรมนี้ผมตั้งใจทำให้ออกมาดูดีมากๆจริงๆอยากให้เป็นสีเหลือง
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(7*t) * math.cos(11*t)
return xt
def y(t):
yt = math.cos(7*t) * math.sin(11*t)
return yt
plot(x, y, -100, 100, 0.05)
plt.show()
Prog-02: Beautiful Parametric Equation
6231114421 ธีรภัทร สุขทิพยาโรจน์
$ x(t)=cos(t)-cos(100t)sin(t) $
$ y(t)=2sin(t)-sin(100t) $
โปรแกรมนี้วำดลวดลำยอ่อนชอ้ยสวยงำมสะดุดตำ
ผมเป็นผู้เลือกสมการข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(t)-math.cos(100*t)*math.sin(t)
return xt
def y(t):
yt = 2*math.sin(t)-math.sin(100*t)
return yt
plot(x, y, 0, 2*math.pi, 0.00001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231117321 นายปราโมทย์ มหาศิวะกุล
$ x= math.cos(7*t)*math.cos(11*t)
$ y= math.cos(7t)math.sin(11*t)
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตา
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = math.cos(7*t)*math.cos(11*t)
return xt
def y(t):
yt = math.cos(7*t)*math.sin(11*t)
return yt
plot(x, y, 0, 8*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231118021 ปัณฑิกา จันทราช
$x(t)=11cost-6cos((11/6)t)$
$y(t)=11sint-6sin((11/6)t)$
โปรแกรมนี้มีชื่อว่า flower in wonderland
ข้าพเจ้าเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตนเอง
def x(t):
xt = 11*math.cos(t) - 6*math.cos((11/6)*t)
return xt
def y(t):
yt = 11*math.sin(t) - 6*math.sin((11/6)*t)
return yt
plot(x, y, -20*math.pi, 20*math.pi, 0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6231119621 พรรณภัค วิลัยวรรณ์
$ x(t) = cos(4t)cos(t) $
$ y(t) = cos(4t)sin(t) $
เป็นโปรแกรมที่มีอะไรให้น่าทึ่งตลอด
ขอยืนยันว่าเป็นคนเลือกสมการข้างต้นเองและเขียนนิพจน์เอง
def x(t):
xt = math.cos(4*t)*math.cos(t)
return xt
def y(t):
yt = math.cos(4*t)*math.sin(t)
return yt
plot(x, y, 0, 2*math.pi, 0.1)
plt.show()
Prog-02: Beautiful Parametric Equation
6231124721 วารี อัมระรงค์
$[x(t)=cos(t)-\frac{sin(t)^{2}}{sqrt{2}}$
$y(t)=sin(t)cos(t)$
โปรแกรมนี้ดีมากๆ
หนูเลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเองแน่นอนค่ะ
def x(t):
xt = math.cos(t)-((math.sin(t)**2)/math.sqrt(2))
return xt
def y(t):
yt = math.sin(t)*math.cos(t)
return yt
plot(x, y, 0, 2*math.pi, 0.001)
plt.show()
Prog-02: Beautiful Parametric Equation
6231125321 วิมุทร์เอก เตชะมรกต
$ x(t)=4cos((-11/4)t)+7cos(t) $
$ y(t)=4sin((-11/4)t)+7sin(t) $
โปรแกรมนี้วาดด้วยลวดลายสวยสดงดงาม
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = 4*math.cos((-11/4)*t)+(7*math.cos(t))
return xt
def y(t):
yt = 4*math.sin((-11/4)*t)+(7*math.sin(t))
return yt
plot(x, y,0, 8*math.pi, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231126021 นายวิริทธิ์พล อยู่สำราญ
$ LaTex code ของสมกำร x(t) = 4/19 sin(141/32 - 160 t) + 8/35 sin(87/38 - 157 t) + 2/11 sin(101/37 - 156 t) + 6/31 sin(19/34 - 154 t) + 7/41 sin(117/38 - 153 t) + 1/8 sin(47/25 - 152 t) + 7/46 sin(257/75 - 151 t) + 9/46 sin(73/45 - 149 t) + 3/19 sin(45/16 - 148 t) + 5/19 sin(1/33 - 147 t) + 14/47 sin(76/27 - 144 t) + 1/18 sin(59/13 - 142 t) + 7/32 sin(69/68 - 139 t) + 13/42 sin(87/22 - 136 t) + 5/36 sin(13/16 - 135 t) + 4/35 sin(47/20 - 134 t) + 14/39 sin(111/32 - 133 t) + 3/34 sin(567/142 - 132 t) + 8/27 sin(7/18 - 130 t) + 2/7 sin(220/63 - 129 t) + 7/37 sin(50/29 - 128 t) + 10/37 sin(72/31 - 127 t) + 5/16 sin(31/28 - 126 t) + 5/26 sin(184/45 - 125 t) + 5/19 sin(23/32 - 124 t) + 3/16 sin(13/51 - 123 t) + 8/19 sin(17/41 - 122 t) + 14/47 sin(179/45 - 121 t) + 10/41 sin(76/39 - 119 t) + 5/21 sin(67/28 - 117 t) + 16/41 sin(313/68 - 116 t) + 3/7 sin(53/37 - 115 t) + 17/45 sin(194/47 - 114 t) + 1/25 sin(7/39 - 113 t) + 17/30 sin(207/58 - 112 t) + 4/17 sin(8/55 - 111 t) + 3/19 sin(43/24 - 110 t) + 7/26 sin(100/43 - 108 t) + 7/32 sin(63/16 - 107 t) + 10/31 sin(23/43 - 106 t) + 8/25 sin(99/31 - 105 t) + 6/37 sin(185/53 - 104 t) + 12/23 sin(33/14 - 103 t) + 8/29 sin(4 - 102 t) + 2/9 sin(15/29 - 100 t) + 29/68 sin(137/61 - 99 t) + 7/29 sin(88/25 - 98 t) + 1/12 sin(21/20 - 97 t) + 1/4 sin(93/26 - 96 t) + 11/31 sin(57/40 - 95 t) + 13/46 sin(27/23 - 90 t) + 12/29 sin(27/40 - 88 t) + 23/35 sin(43/12 - 87 t) + 8/9 sin(1/176 - 86 t) + 1/4 sin(104/29 - 85 t) + 11/24 sin(84/25 - 83 t) + 21/46 sin(43/27 - 81 t) + 26/47 sin(73/25 - 80 t) + 1/6 sin(241/86 - 79 t) + 7/43 sin(99/28 - 76 t) + 9/17 sin(97/34 - 75 t) + 4/5 sin(148/35 - 74 t) + 22/37 sin(7/29 - 73 t) + 32/43 sin(98/29 - 72 t) + 17/21 sin(37/29 - 70 t) + 31/47 sin(60/17 - 69 t) + 17/27 sin(79/24 - 68 t) + 8/7 sin(159/49 - 67 t) + 44/35 sin(67/41 - 65 t) + 13/36 sin(39/10 - 64 t) + 43/31 sin(29/31 - 63 t) + 15/41 sin(69/32 - 62 t) + 45/37 sin(3/14 - 61 t) + 11/15 sin(108/47 - 60 t) + 10/17 sin(38/9 - 59 t) + 34/25 sin(26/29 - 58 t) + 7/20 sin(86/25 - 57 t) + 39/23 sin(1/53 - 54 t) + 13/12 sin(73/19 - 53 t) + 19/30 sin(411/103 - 52 t) + 10/9 sin(43/11 - 51 t) + 57/29 sin(25/22 - 50 t) + 103/54 sin(38/13 - 49 t) + 35/22 sin(31/35 - 47 t) + 7/12 sin(7/10 - 45 t) + 81/26 sin(142/37 - 44 t) + 16/37 sin(62/55 - 42 t) + 15/17 sin(11/6 - 41 t) + 57/22 sin(29/9 - 40 t) + 103/55 sin(218/61 - 39 t) + 33/26 sin(27/13 - 38 t) + 11/28 sin(64/23 - 37 t) + 34/13 sin(55/36 - 36 t) + 89/21 sin(11/6 - 35 t) + 142/35 sin(25/17 - 34 t) + 67/22 sin(17/30 - 33 t) + 58/15 sin(16/19 - 32 t) + 56/23 sin(61/28 - 31 t) + 121/30 sin(63/17 - 29 t) + 155/36 sin(17/47 - 27 t) + 65/38 sin(51/41 - 26 t) + 272/37 sin(67/52 - 23 t) + 59/32 sin(82/27 - 22 t) + 246/31 sin(2477/619 - 21 t) + 89/7 sin(91/22 - 20 t) + 152/9 sin(13/10 - 17 t) + 383/37 sin(26/9 - 16 t) + 149/28 sin(1/12 - 15 t) + 331/15 sin(43/22 - 14 t) + 841/30 sin(44/19 - 13 t) + 279/16 sin(41/14 - 12 t) + 753/37 sin(201/73 - 11 t) + 601/31 sin(46/61 - 10 t) + 4265/47 sin(115/37 - 7 t) + 6215/158 sin(77/51 - 6 t) + 499/25 sin(40/23 - 5 t) + 1910/19 sin(254/61 - 4 t) + 3909/31 sin(60/31 - 3 t) + 34111/40 sin(43/18 - t) - 6677/35 sin(2 t + 17/20) - 723/17 sin(8 t + 61/41) - 1900/37 sin(9 t + 19/24) - 789/59 sin(18 t + 4/27) - 195/44 sin(19 t + 52/35) - 283/23 sin(24 t + 4/7) - 148/21 sin(25 t + 59/40) - 343/44 sin(28 t + 13/9) - 14/23 sin(30 t + 71/62) - 64/27 sin(43 t + 26/17) - 7/12 sin(46 t + 27/26) - 65/34 sin(48 t + 18/25) - 31/28 sin(55 t + 7/9) - 23/18 sin(56 t + 39/59) - 5/23 sin(66 t + 2/29) - 19/21 sin(71 t + 38/61) - 34/91 sin(77 t + 21/52) - 8/65 sin(78 t + 1) - 2/7 sin(82 t + 11/43) - 11/29 sin(84 t + 11/8) - 19/29 sin(89 t + 71/46) - 13/38 sin(91 t + 6/13) - 11/30 sin(92 t + 17/11) - 41/103 sin(93 t + 3/13) - 1/5 sin(94 t + 2/17) - 13/23 sin(101 t + 9/16) - 7/25 sin(109 t + 35/37) - 15/61 sin(118 t + 2/13) - 13/59 sin(120 t + 32/53) - 3/41 sin(131 t + 16/37) - 2/37 sin(137 t + 2/37) - 6/19 sin(138 t + 31/24) - 12/85 sin(140 t + 1/31) - 8/37 sin(141 t + 50/43) - 3/22 sin(143 t + 34/27) - 5/34 sin(145 t + 11/23) - 4/31 sin(146 t + 1/11) - 9/28 sin(150 t + 13/28) - 1/16 sin(155 t + 5/21) - 1/8 sin(158 t + 20/37) - 1/13 sin(159 t + 13/16) $
$ LaTex code ของสมกำร y(t) = 3/28 sin(63/29 - 159 t) + 4/21 sin(7/23 - 157 t) + 4/43 sin(32/21 - 156 t) + 8/31 sin(101/30 - 155 t) + 3/28 sin(3/16 - 154 t) + 1/26 sin(131/37 - 153 t) + 2/23 sin(62/17 - 151 t) + 1/6 sin(23/24 - 150 t) + 1/9 sin(137/36 - 149 t) + 1/15 sin(77/17 - 148 t) + 11/24 sin(73/37 - 146 t) + 5/46 sin(161/36 - 145 t) + 8/35 sin(37/19 - 144 t) + 2/11 sin(325/81 - 143 t) + 1/11 sin(46/25 - 142 t) + 2/35 sin(48/31 - 141 t) + 2/9 sin(41/11 - 140 t) + 5/39 sin(11/15 - 139 t) + 1/34 sin(47/17 - 138 t) + 11/30 sin(10/9 - 137 t) + 5/12 sin(182/47 - 136 t) + 1/18 sin(37/31 - 134 t) + 5/41 sin(77/23 - 133 t) + 2/19 sin(255/56 - 131 t) + 1/12 sin(109/49 - 129 t) + 2/13 sin(43/20 - 127 t) + 5/37 sin(34/29 - 125 t) + 6/17 sin(56/17 - 124 t) + 17/35 sin(38/33 - 122 t) + 17/45 sin(37/9 - 121 t) + 21/52 sin(5/17 - 120 t) + 9/23 sin(136/39 - 119 t) + 23/93 sin(2 - 117 t) + 7/11 sin(39/19 - 115 t) + 20/43 sin(143/40 - 114 t) + 12/31 sin(82/43 - 112 t) + 17/24 sin(29/17 - 110 t) + 2/3 sin(285/67 - 109 t) + 35/61 sin(10/21 - 108 t) + 5/12 sin(46/21 - 107 t) + 13/46 sin(92/49 - 106 t) + 2/13 sin(93/26 - 105 t) + 9/49 sin(47/38 - 103 t) + 13/34 sin(161/41 - 102 t) + 3/14 sin(53/14 - 100 t) + 6/19 sin(9/23 - 99 t) + 7/30 sin(73/28 - 98 t) + 3/20 sin(108/23 - 97 t) + 3/14 sin(146/31 - 96 t) + 19/37 sin(164/59 - 95 t) + 5/6 sin(14/3 - 94 t) + 2/11 sin(7/11 - 93 t) + 4/11 sin(19/15 - 91 t) + 12/29 sin(17/32 - 88 t) + 2/35 sin(269/62 - 87 t) + 15/28 sin(79/41 - 86 t) + 13/12 sin(51/13 - 85 t) + 12/19 sin(9/55 - 84 t) + 14/31 sin(23/10 - 83 t) + 26/41 sin(13/35 - 81 t) + 49/57 sin(89/38 - 80 t) + 37/43 sin(41/42 - 78 t) + 13/30 sin(46/27 - 77 t) + 31/46 sin(29/13 - 76 t) + 17/43 sin(28/31 - 75 t) + 3/46 sin(63/17 - 74 t) + 25/42 sin(1/3 - 73 t) + 17/19 sin(137/44 - 72 t) + 38/39 sin(68/37 - 70 t) + 13/11 sin(34/21 - 68 t) + 3/2 sin(80/21 - 67 t) + 45/58 sin(85/53 - 65 t) + 23/24 sin(86/19 - 64 t) + 79/63 sin(88/49 - 63 t) + 33/19 sin(103/26 - 62 t) + 38/49 sin(12/19 - 61 t) + 23/18 sin(90/31 - 60 t) + 19/26 sin(113/25 - 59 t) + 62/83 sin(38/11 - 57 t) + 25/16 sin(87/130 - 55 t) + 59/36 sin(257/154 - 54 t) + 21/26 sin(71/20 - 53 t) + 16/17 sin(43/31 - 52 t) + 19/30 sin(14/9 - 50 t) + 42/25 sin(54/13 - 49 t) + 35/33 sin(5/19 - 47 t) + 115/57 sin(15/34 - 46 t) + 74/29 sin(21/17 - 45 t) + 83/36 sin(145/43 - 44 t) + 35/13 sin(48/49 - 42 t) + 37/18 sin(73/20 - 41 t) + 34/19 sin(58/25 - 39 t) + 41/30 sin(19/24 - 37 t) + 49/22 sin(24/17 - 36 t) + 71/52 sin(11/6 - 35 t) + 11/3 sin(74/29 - 34 t) + 94/23 sin(137/34 - 33 t) + 23/22 sin(38/31 - 31 t) + 179/57 sin(54/29 - 30 t) + 10/71 sin(99/28 - 29 t) + 41/24 sin(53/30 - 28 t) + 51/23 sin(97/65 - 27 t) + 120/19 sin(133/44 - 26 t) + 313/52 sin(87/19 - 25 t) + 227/65 sin(25/26 - 24 t) + 122/25 sin(31/9 - 23 t) + 37/24 sin(53/38 - 22 t) + 398/77 sin(145/31 - 21 t) + 502/39 sin(158/51 - 18 t) + 74/23 sin(9/34 - 16 t) + 233/32 sin(57/22 - 15 t) + 407/27 sin(59/22 - 14 t) + 2007/59 sin(53/22 - 11 t) + 997/38 sin(83/39 - 10 t) + 1152/17 sin(27/38 - 8 t) + 1067/25 sin(5/12 - 7 t) + 1221/17 sin(7/12 - 6 t) + 797/9 sin(35/29 - 5 t) + 9099/86 sin(63/47 - 4 t) + 10397/21 sin(27/7 - t) - 1943/25 sin(2 t + 3/16) - 2187/11 sin(3 t + 49/37) - 2215/54 sin(9 t + 6/7) - 557/21 sin(12 t + 37/43) - 763/38 sin(13 t + 19/27) - 234/35 sin(17 t + 5/4) - 275/38 sin(19 t + 11/13) - 670/63 sin(20 t + 14/17) - 117/233 sin(32 t + 17/20) - 111/83 sin(38 t + 11/31) - 2/3 sin(40 t + 1/31) - 146/43 sin(43 t + 17/28) - 108/77 sin(48 t + 21/29) - 5/9 sin(51 t + 19/13) - 19/17 sin(56 t + 27/23) - 11/10 sin(58 t + 13/38) - 29/14 sin(66 t + 13/21) - 42/83 sin(69 t + 36/25) - 55/56 sin(71 t + 15/26) - 17/28 sin(79 t + 29/22) - 4/31 sin(82 t + 47/55) - 20/39 sin(89 t + 17/37) - 4/13 sin(90 t + 31/25) - 7/22 sin(92 t + 38/27) - 16/47 sin(101 t + 15/29) - 5/28 sin(104 t + 423/424) - 54/163 sin(111 t + 13/20) - 17/31 sin(113 t + 5/29) - 5/24 sin(116 t + 13/31) - 55/109 sin(118 t + 5/19) - 8/15 sin(123 t + 27/23) - 3/20 sin(126 t + 61/39) - 11/34 sin(128 t + 37/36) - 7/33 sin(130 t + 21/23) - 13/31 sin(132 t + 45/29) - 7/23 sin(135 t + 4/41) - 4/41 sin(147 t + 9/32) - 4/37 sin(152 t + 5/34) - 13/77 sin(158 t + 17/36) - 9/62 sin(160 t + 3/37) $
โปรแกรมนี้วาดสิงโตดุร้าย
ผมเป็นผู้เลือกและเขียนนิพจน์คณิตศาสตร์ของสมการที่เลือกด้วยตนเอง
def x(t):
xt = 4/19 *math.sin(141/32 - 160 *t) + 8/35 *math.sin(87/38 - 157 *t) + 2/11 *math.sin(101/37 - 156 *t) + 6/31 *math.sin(19/34 - 154 *t) + 7/41*math.sin(117/38 - 153 *t) + 1/8 *math.sin(47/25 - 152 *t) + 7/46 *math.sin(257/75 - 151 *t) + 9/46 *math.sin(73/45 - 149 *t) + 3/19 *math.sin(45/16 - 148* t) + 5/19 *math.sin(1/33 - 147* t) + 14/47 *math.sin(76/27 - 144* t) + 1/18 *math.sin(59/13 - 142* t) + 7/32 *math.sin(69/68 - 139* t) + 13/42 *math.sin(87/22 - 136* t) + 5/36 *math.sin(13/16 - 135* t) + 4/35 *math.sin(47/20 - 134 *t) + 14/39 *math.sin(111/32 - 133* t) + 3/34 *math.sin(567/142 - 132* t) + 8/27 *math.sin(7/18 - 130 *t) + 2/7 *math.sin(220/63 - 129* t) + 7/37 *math.sin(50/29 - 128 *t) + 10/37 *math.sin(72/31 - 127* t) + 5/16 *math.sin(31/28 - 126* t) + 5/26 *math.sin(184/45 - 125* t) + 5/19 *math.sin(23/32 - 124* t) + 3/16 *math.sin(13/51 - 123 *t) + 8/19 *math.sin(17/41 - 122* t) + 14/47 *math.sin(179/45 - 121 *t) + 10/41 *math.sin(76/39 - 119* t) + 5/21 *math.sin(67/28 - 117 *t) + 16/41 *math.sin(313/68 - 116 *t) + 3/7 *math.sin(53/37 - 115* t) + 17/45 *math.sin(194/47 - 114 *t) + 1/25 *math.sin(7/39 - 113* t) + 17/30 *math.sin(207/58 - 112 *t) + 4/17 *math.sin(8/55 - 111 *t) + 3/19 *math.sin(43/24 - 110* t) + 7/26 *math.sin(100/43 - 108 *t) + 7/32 *math.sin(63/16 - 107 *t) + 10/31 *math.sin(23/43 - 106 *t) + 8/25 *math.sin(99/31 - 105 *t) + 6/37*math.sin(185/53 - 104* t) + 12/23 *math.sin(33/14 - 103* t) + 8/29 *math.sin(4 - 102* t) + 2/9 *math.sin(15/29 - 100* t) + 29/68 *math.sin(137/61 - 99 *t) + 7/29 *math.sin(88/25 - 98 *t) + 1/12*math.sin(21/20 - 97* t) + 1/4 *math.sin(93/26 - 96* t) + 11/31 *math.sin(57/40 - 95 *t) + 13/46 *math.sin(27/23 - 90* t) + 12/29 *math.sin(27/40 - 88* t) + 23/35 *math.sin(43/12 - 87* t) + 8/9 *math.sin(1/176 - 86* t) + 1/4 *math.sin(104/29 - 85 *t) + 11/24 *math.sin(84/25 - 83* t) + 21/46 *math.sin(43/27 - 81* t) + 26/47 *math.sin(73/25 - 80* t) + 1/6 *math.sin(241/86 - 79* t) + 7/43 *math.sin(99/28 - 76 *t) + 9/17 *math.sin(97/34 - 75 *t) + 4/5 *math.sin(148/35 - 74 *t) + 22/37 *math.sin(7/29 - 73* t) + 32/43 *math.sin(98/29 - 72 *t) + 17/21 *math.sin(37/29 - 70* t) + 31/47 *math.sin(60/17 - 69 *t) + 17/27 *math.sin(79/24 - 68 *t) + 8/7*math.sin(159/49 - 67* t) + 44/35 *math.sin(67/41 - 65 *t) + 13/36 *math.sin(39/10 - 64 *t) + 43/31 *math.sin(29/31 - 63* t) + 15/41 *math.sin(69/32 - 62 *t) + 45/37 *math.sin(3/14 - 61* t) + 11/15 *math.sin(108/47 - 60 *t) + 10/17 *math.sin(38/9 - 59* t) + 34/25 *math.sin(26/29 - 58* t) + 7/20*math.sin(86/25 - 57* t) + 39/23 *math.sin(1/53 - 54* t) + 13/12 *math.sin(73/19 - 53* t) + 19/30 *math.sin(411/103 - 52 *t) + 10/9 *math.sin(43/11 - 51 *t) + 57/29 *math.sin(25/22 - 50 *t) + 103/54 *math.sin(38/13 - 49 *t) + 35/22 *math.sin(31/35 - 47 *t) + 7/12 *math.sin(7/10 - 45* t) + 81/26 *math.sin(142/37 - 44* t) + 16/37 *math.sin(62/55 - 42 *t) + 15/17 *math.sin(11/6 - 41 *t) + 57/22 *math.sin(29/9 - 40 *t) + 103/55 *math.sin(218/61 - 39 *t) + 33/26 *math.sin(27/13 - 38* t) + 11/28*math.sin(64/23 - 37 *t) + 34/13 *math.sin(55/36 - 36 *t) + 89/21 *math.sin(11/6 - 35* t) + 142/35 *math.sin(25/17 - 34 *t) + 67/22 *math.sin(17/30 - 33 *t) + 58/15 *math.sin(16/19 - 32* t) + 56/23 *math.sin(61/28 - 31 *t) + 121/30 *math.sin(63/17 - 29 *t) + 155/36 *math.sin(17/47 - 27* t) + 65/38 *math.sin(51/41 - 26 *t) + 272/37 *math.sin(67/52 - 23 *t) + 59/32 *math.sin(82/27 - 22 *t) + 246/31*math.sin(2477/619 - 21 *t) + 89/7 *math.sin(91/22 - 20 *t) + 152/9 *math.sin(13/10 - 17 *t) + 383/37*math.sin(26/9 - 16 *t) + 149/28 *math.sin(1/12 - 15* t) + 331/15 *math.sin(43/22 - 14 *t) + 841/30*math.sin(44/19 - 13 *t) + 279/16 *math.sin(41/14 - 12* t) + 753/37 *math.sin(201/73 - 11 *t) + 601/31 *math.sin(46/61 - 10 *t) + 4265/47 *math.sin(115/37 - 7* t) + 6215/158*math.sin(77/51 - 6 *t) + 499/25 *math.sin(40/23 - 5* t) + 1910/19 *math.sin(254/61 - 4* t) + 3909/31 *math.sin(60/31 - 3 *t) + 34111/40 *math.sin(43/18 - t) - 6677/35 *math.sin(2* t + 17/20) - 723/17 *math.sin(8* t + 61/41) - 1900/37 *math.sin(9* t + 19/24) - 789/59 *math.sin(18 *t + 4/27) - 195/44 *math.sin(19* t + 52/35) - 283/23 *math.sin(24* t + 4/7) - 148/21 *math.sin(25* t + 59/40) - 343/44 *math.sin(28* t + 13/9) - 14/23 *math.sin(30 *t + 71/62) - 64/27 *math.sin(43* t + 26/17) - 7/12 *math.sin(46* t + 27/26) - 65/34 *math.sin(48* t + 18/25) - 31/28 *math.sin(55 *t + 7/9) - 23/18 *math.sin(56* t + 39/59) - 5/23 *math.sin(66* t + 2/29) - 19/21 *math.sin(71 *t + 38/61) - 34/91 *math.sin(77* t + 21/52) - 8/65 *math.sin(78 *t + 1) - 2/7*math.sin(82* t + 11/43) - 11/29 *math.sin(84* t + 11/8) - 19/29 *math.sin(89* t + 71/46) - 13/38 *math.sin(91* t + 6/13) - 11/30*math.sin(92 *t + 17/11) - 41/103 *math.sin(93 *t + 3/13) - 1/5 *math.sin(94* t + 2/17) - 13/23 *math.sin(101* t + 9/16) - 7/25 *math.sin(109 *t + 35/37) - 15/61 *math.sin(118* t + 2/13) - 13/59 *math.sin(120* t + 32/53) - 3/41*math.sin(131* t + 16/37) - 2/37 *math.sin(137* t + 2/37) - 6/19 *math.sin(138* t + 31/24) - 12/85 *math.sin(140 *t + 1/31) - 8/37*math.sin(141* t + 50/43) - 3/22 *math.sin(143* t + 34/27) - 5/34 *math.sin(145* t + 11/23) - 4/31 *math.sin(146 *t + 1/11) - 9/28 *math.sin(150* t + 13/28) - 1/16 *math.sin(155* t + 5/21) - 1/8 *math.sin(158* t + 20/37) - 1/13 *math.sin(159* t + 13/16)
return xt
def y(t):
yt = 3/28 *math.sin(63/29 - 159* t) + 4/21 *math.sin(7/23 - 157* t) + 4/43 *math.sin(32/21 - 156 *t) + 8/31 *math.sin(101/30 - 155* t) + 3/28 *math.sin(3/16 - 154 *t) + 1/26 *math.sin(131/37 - 153 *t) + 2/23 *math.sin(62/17 - 151* t) + 1/6 *math.sin(23/24 -150* t) + 1/9 *math.sin(137/36 - 149 *t) + 1/15 *math.sin(77/17 - 148* t) + 11/24 *math.sin(73/37 - 146* t) + 5/46 *math.sin(161/36 - 145* t) + 8/35 *math.sin(37/19 - 144* t) + 2/11 *math.sin(325/81 - 143* t) + 1/11 *math.sin(46/25 - 142 *t) + 2/35 *math.sin(48/31 - 141* t) + 2/9 *math.sin(41/11 - 140 *t) + 5/39 *math.sin(11/15 - 139 *t) + 1/34 *math.sin(47/17 - 138* t) + 11/30 *math.sin(10/9 - 137 *t) + 5/12 *math.sin(182/47 - 136 *t) + 1/18 *math.sin(37/31 - 134* t) + 5/41 *math.sin(77/23 - 133 *t) + 2/19 *math.sin(255/56 - 131 *t) + 1/12 *math.sin(109/49 - 129 *t) + 2/13 *math.sin(43/20 - 127* t) + 5/37 *math.sin(34/29 - 125 *t) + 6/17 *math.sin(56/17 - 124* t) + 17/35 *math.sin(38/33 - 122 *t) + 17/45 *math.sin(37/9 - 121* t) + 21/52 *math.sin(5/17 - 120 *t) + 9/23 *math.sin(136/39 - 119 *t) + 23/93 *math.sin(2 - 117 *t) + 7/11 *math.sin(39/19 - 115* t) + 20/43 *math.sin(143/40 - 114* t) + 12/31 *math.sin(82/43 - 112 *t) + 17/24 *math.sin(29/17 - 110 *t) + 2/3 *math.sin(285/67 - 109 *t) + 35/61 *math.sin(10/21 - 108* t) + 5/12 *math.sin(46/21 - 107* t) + 13/46 *math.sin(92/49 - 106* t) + 2/13 *math.sin(93/26 - 105 *t) + 9/49 *math.sin(47/38 - 103 *t) + 13/34 *math.sin(161/41 - 102 *t) + 3/14 *math.sin(53/14 - 100* t) + 6/19 *math.sin(9/23 - 99* t) + 7/30 *math.sin(73/28 - 98 *t) + 3/20 *math.sin(108/23 - 97 *t) + 3/14 *math.sin(146/31 - 96* t) + 19/37 *math.sin(164/59 - 95* t) + 5/6 *math.sin(14/3 - 94 *t) + 2/11 *math.sin(7/11 - 93 *t) + 4/11 *math.sin(19/15 - 91 *t) + 12/29 *math.sin(17/32 - 88 *t) + 2/35 *math.sin(269/62 - 87* t) + 15/28 *math.sin(79/41 - 86 *t) + 13/12 *math.sin(51/13 - 85 *t) + 12/19 *math.sin(9/55 - 84 *t) + 14/31 *math.sin(23/10 - 83 *t) + 26/41 *math.sin(13/35 - 81 *t) + 49/57 *math.sin(89/38 - 80 *t) + 37/43 *math.sin(41/42 - 78 *t) + 13/30 *math.sin(46/27 - 77* t) + 31/46 *math.sin(29/13 - 76* t) + 17/43*math.sin(28/31 - 75* t) + 3/46 *math.sin(63/17 - 74* t) + 25/42 *math.sin(1/3 - 73 *t) + 17/19 *math.sin(137/44 - 72* t) + 38/39 *math.sin(68/37 - 70* t) + 13/11 *math.sin(34/21 - 68* t) + 3/2 *math.sin(80/21 - 67* t) + 45/58 *math.sin(85/53 - 65 *t) + 23/24 *math.sin(86/19 - 64 *t) + 79/63 *math.sin(88/49 - 63 *t) + 33/19 *math.sin(103/26 - 62* t) + 38/49 *math.sin(12/19 - 61 *t) + 23/18 *math.sin(90/31 - 60* t) + 19/26 *math.sin(113/25 - 59 *t) + 62/83 *math.sin(38/11 - 57 *t) + 25/16 *math.sin(87/130 - 55 *t) + 59/36 *math.sin(257/154 - 54 *t) + 21/26 *math.sin(71/20 - 53 *t) + 16/17 *math.sin(43/31 - 52* t) + 19/30 *math.sin(14/9 - 50 *t) + 42/25 *math.sin(54/13 - 49* t) + 35/33 *math.sin(5/19 - 47 *t) + 115/57 *math.sin(15/34 - 46 *t) + 74/29 *math.sin(21/17 - 45 *t) + 83/36 *math.sin(145/43 - 44 *t) + 35/13 *math.sin(48/49 - 42 *t) + 37/18 *math.sin(73/20 - 41* t) + 34/19 *math.sin(58/25 - 39 *t) + 41/30 *math.sin(19/24 - 37 *t) + 49/22 *math.sin(24/17 - 36 *t) + 71/52 *math.sin(11/6 - 35 *t) + 11/3 *math.sin(74/29 - 34* t) + 94/23 *math.sin(137/34 - 33* t) + 23/22 *math.sin(38/31 - 31 *t) + 179/57 *math.sin(54/29 - 30* t) + 10/71 *math.sin(99/28 - 29* t) + 41/24 *math.sin(53/30 - 28 *t) + 51/23 *math.sin(97/65 - 27* t) + 120/19 *math.sin(133/44 - 26 *t) + 313/52 *math.sin(87/19 - 25 *t) + 227/65 *math.sin(25/26 - 24* t) + 122/25 *math.sin(31/9 - 23 *t) + 37/24 *math.sin(53/38 - 22* t) + 398/77 *math.sin(145/31 - 21 *t) + 502/39 *math.sin(158/51 - 18* t) + 74/23 *math.sin(9/34 - 16 *t) + 233/32 *math.sin(57/22 - 15 *t) + 407/27 *math.sin(59/22 - 14* t) + 2007/59 *math.sin(53/22 - 11 *t) + 997/38 *math.sin(83/39 - 10* t) + 1152/17 *math.sin(27/38 - 8 *t) + 1067/25 *math.sin(5/12 - 7 *t) + 1221/17 *math.sin(7/12 - 6 *t) + 797/9 *math.sin(35/29 - 5 *t) + 9099/86 *math.sin(63/47 - 4 *t) + 10397/21 *math.sin(27/7 - t) - 1943/25 *math.sin(2* t + 3/16) - 2187/11 *math.sin(3* t + 49/37) - 2215/54 *math.sin(9* t + 6/7) - 557/21 *math.sin(12* t + 37/43) - 763/38 *math.sin(13 *t + 19/27) - 234/35 *math.sin(17* t + 5/4) - 275/38 *math.sin(19* t + 11/13) - 670/63 *math.sin(20 *t + 14/17) - 117/233 *math.sin(32 *t + 17/20) - 111/83 *math.sin(38* t + 11/31) - 2/3 *math.sin(40* t + 1/31) - 146/43 *math.sin(43* t + 17/28) - 108/77 *math.sin(48* t + 21/29) - 5/9 *math.sin(51 *t + 19/13) - 19/17 *math.sin(56* t + 27/23) - 11/10 *math.sin(58* t + 13/38) - 29/14 *math.sin(66* t + 13/21) - 42/83 *math.sin(69* t + 36/25) - 55/56 *math.sin(71* t + 15/26) - 17/28 *math.sin(79* t + 29/22) - 4/31 *math.sin(82* t + 47/55) - 20/39 *math.sin(89* t + 17/37) - 4/13 *math.sin(90* t + 31/25) - 7/22 *math.sin(92* t + 38/27) - 16/47 *math.sin(101 *t + 15/29) - 5/28 *math.sin(104* t + 423/424) - 54/163 *math.sin(111* t + 13/20) - 17/31 *math.sin(113 *t + 5/29) - 5/24 *math.sin(116* t + 13/31) - 55/109 *math.sin(118* t + 5/19) - 8/15 *math.sin(123* t + 27/23) - 3/20 *math.sin(126* t + 61/39) - 11/34 *math.sin(128 *t + 37/36) - 7/33 *math.sin(130* t + 21/23) - 13/31 *math.sin(132* t + 45/29) - 7/23 *math.sin(135* t + 4/41) - 4/41 *math.sin(147 *t + 9/32) - 4/37 *math.sin(152 *t + 5/34) - 13/77 *math.sin(158* t + 17/36) - 9/62 *math.sin(160* t + 3/37)
return yt
plot(x, y, -10, 10, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231128221 หัสนัย นิ่มแก้ว
$x(t)=t + \frac{cos(16t)}{t}$
$y(t)=t + \frac{sin(16t)}{t}$
โปรแกรมนี้วำดลวดลายที่คล้ายกับ nautilus ซึ่งเป็นหนึ่งในสิ่งมีชีวิตที่สวยงาม เพราะมีสัดส่วนทองคำและผมชอบมากๆ
ผมเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง อาจจะง่ายไปหน่อย แต่ผมชอบมากกกกกก
def x(t):
xt = t+(math.cos(16*t))/t
return xt
def y(t):
yt = t+(math.sin(16*t))/t
return yt
plot(x, y, 0.2, 20, 0.01)
plt.show()
Prog-02: Beautiful Parametric Equation
6231502221 นายกันตพงศ์์ โกมินทร์
$x(t)=cos(t)-cos(5t)sin(3t)$
$y(t)=2sin(3t)-sin(3t)$
โปรแกรมนี้วาดลวดลายได้สวยงาม
ผมเป็นผู้เลือกสมการข้างบนและเขียนด้วยตัวเอง
def x(t):
xt = math.cos(t) - math.cos(5*t)*math.sin(3*t)
return xt
def y(t):
yt = 2*math.sin(3*t) - math.sin(3*t)
return yt
plot(x, y, 0, 6*math.pi, 0.05)
plt.show()
Prog-02: Beautiful Parametric Equation
6231507421 นพดล ประเสริฐศรี
$x(t)=10(cos(t))^3$
$y(t)=10(sin(t))^3$
โปรแกรมนีมีความสวยงามและน่าตื่นเต้น
ผมนพดลเป็นผู้เลือกสมกำรข้ำงบนและเขียนนิพจน์คณิตศำสตร์ด้วยตัวเอง
def x(t):
xt = 10*(math.cos(t))**3
return xt
def y(t):
yt = 10*(math.sin(t))**3
return yt
plot(x, y, -12, 12, 0.1)
Prog-02: Beautiful Parametric Equation
6231512521 ภัคธร มื่งขวัญปิยะกุล
$x(t) = 1.5*math.cos(t) - math.cos(10*t)$
$y(t) = 1.5*math.sin(t) - math.sin(10*t)$
โปรแกรมนี้วาดลวดลายอ่อนช้อยสวยงามสะดุดตา
ผมเป็นผู้เลือกสมการข้างบนและเขียนนิพจน์คณิตศาสตร์ด้วยตัวเอง
def x(t):
xt = 1.5*math.cos(t) - math.cos(10*t)
return xt
def y(t):
yt = 1.5*math.sin(t) - math.sin(10*t)
return yt
plot(x, y, -5, 5, 0.001)
plt.show()
Assignment 2 : Parametric equations
6231514821 Ratthi Phirakitluck
$ x(t)=(1/6)sin(2t)(1+cos(80t))(1-(1/12)(sin(2t))^8) $
$ y(t)=(-1/2)((2t/pi)-1))^2 + (1/7)sin(2t)(sin(80t))^3 $
The beautiful equation.
I chose and typed this equation by myself.
def x(t):
xt = (1/6)*(math.sin(2*t))*(1+math.cos(80*t))*(1-(1/12)*(math.sin(2*t))**8)
return xt
def y(t):
yt = (-1/2)*((((2*t/math.pi)-1))**2)+(1/7)*math.sin(2*t)*(math.sin(80*t))**3
return yt
plot(x, y, 0, math.pi, 0.001)
plt.show()
Prog-02: Beatiful Parametric Equation
6231517721
$x(t)= cos(t)-cos(15*t)$
$y(t)= sin(t)-sin(15*t)$
โปรแกรมนี้เป็นการแสดงตาข่ายคล้ายลูกบอลที่มีแฉกตรงกลางได้อย่างสวยงาม
ผมเป็นผู้เลือกแก้ไขและเขียนสมการทางคณิตศาสตร์ด้วยตนเอง
def x(t):
xt = math.cos(t)-math.cos(15*t)
return xt
def y(t):
yt = math.sin(t)-math.sin(15*t)
return yt
plot(x, y, -15, 15, 0.0001)
plt.show()
Prog-02:Beautiful Parametric Equation
6231718521 อานันท์ ตัณชวนิชย์
$x(t)=sin(t)*(e^cos(t))-2(cos(4t))-(sin(t/12)^5)$
$y(t)=cos(t)*(e^cos(t))-2(cos(4t))-(sin(t/12)^5)$
โปรเเกรมนี้มีลักษณะเป็นรูปผีเสื้อที่มีความสวยงามสะดุดตา
กระผมเป็นผู้เลือกสมการด้านบนเเละเขียนนิพจน์คณิตศาสตร์ด้วยตนเอง
def x(t) :
xt = math.sin(t)*(((math.e)**math.cos(t))-2*math.cos(4*t)-((math.sin(t/12))**5))
return xt
def y(t) :
yt = math.cos(t)*(((math.e)**math.cos(t))-2*math.cos(4*t)-((math.sin(t/12))**5))
return yt
plot(x, y , 0, 100, 1/16)
plt.show()