Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

ผลรวมของกำลังสองของเลขคี่ n ตัวแรก


ชุดกำลังสองของเลขคี่ n ตัวแรกใช้กำลังสองของเลขคี่ n ตัวแรกในชุด

ซีรีส์คือ:1,9,25,49,81,121…

อนุกรมนี้สามารถเขียนเป็น − 1 2 , 3 2 , 5 2 , 7 2 , 9 2 , 11 2 ….

ผลรวมของอนุกรมนี้มีสูตรทางคณิตศาสตร์ −

n(2n+1)(2n-1)/3=n(4n 2 - 1)/3

มาดูตัวอย่างกัน

Input: N = 4
Output: sum =

คำอธิบาย

12 + 3 2 + 5 2 + 7 2 =1 +9+ 25 + 49 =84

ใช้สูตร sum =4(4(4) 2 - 1)/3 =4(64-1)/3 =4(63)/3 =4*21 =84 ทั้งสองวิธีนี้ดี แต่วิธีที่ใช้สูตรทางคณิตศาสตร์จะดีกว่าเพราะไม่ใช้รูปลักษณ์ซึ่งช่วยลดเวลา ความซับซ้อน

ตัวอย่าง

#include <stdio.h>
int main() {
   int n = 8;
   int sum = 0;
   for (int i = 1; i <= n; i++)
      sum += (2*i - 1) * (2*i - 1);
   printf("The sum of square of first %d odd numbers is %d",n, sum);
   return 0;
}

ผลลัพธ์

The sum of square of first 8 odd numbers is 680

ตัวอย่าง

#include <stdio.h>
int main() {
   int n = 18;
   int sum = ((n*((4*n*n)-1))/3);
   printf("The sum of square of first %d odd numbers is %d",n, sum);
   return 0;
}

ผลลัพธ์

The sum of square of first 18 odd numbers is 7770