function y = sumN(n)
sum=0;
for i=1:n
sum += (1/(i*i));
end
y=sum;
end

save this code as sumN.m
--------------------------------------------------
sums = linspace(1,1000,1000);
for N = 1:1000
sums(N) = sumN(N);
end
plot(sums)
xlabel("N");
ylabel("y");

output is:--

P.S.-> just for observation:- y value for N=1000 is 1.6439. and pi*pi/6 is 1.6449 so as can be seen larger value for N is approaching pi*pi/6 value as the graph is seen increasing slowly..
thanks
11. (20 points) A beautiful formula relating the irrational number 1, and the integers is the...
Average-(a+b)/2; 3. Define the following functions: (2 x 10 = 20 points) a) Define a function named Temperature that takes a temperature in Fahrenheit (F) as input and computes and returns the corresponding temperature in Celsius (C) using the following formula: c- (F - 32) b) Define a function Math that takes two integers number and number2 as input parameters and computes two outputs: Sum= a + b Average - Sum/2.0 The function should pass these values to main
Write a MATLAB code to generate an array of 100 random integers between 1 and 10 using the command “randi”. Using “if” statement, impose the condition that if a number in the array is greater than 5, the number is modified as, number = number – 11. Find the sum of the array and store it. Repeat this exercise for 10, 1000 and 100000 trials and plot the following: (a) Sums obtained vs trails number (b) Histogram of the sum...
In mathematics, the Fibonacci numbers are the series of number that exhibit the following pattern: 0,1,1,2,3,5,8,13,21,34,55,89,144,.... In mathematical notation the sequence Fn of Fibonacci number is defined by the following recurrence relation: Fn=Fn-1+Fn-2 With the initial values of F0=0 and F1=1. Thus, the next number in the series is the sum of the previous two numbers. Write a program that asks the user for a positive integer N and generate the Nth Fibonacci number. Your main function should handle user...
c++
Question 1 ram that calls a function calculateSum to calculate the sum from 0 to N integers. The function calculateSum has one parameter N of type integer and returns an integer which represents the sum from 0 to N, inclusive. Write another function calculateAverage that calculates an average. This function will have two parameters: the sum and the number of items. It returns the average (of type float) The main function should be responsible for all inputs and outputs....
Use MATLAB to :
("j" is the imaginary number.) The term lo is the fundamental frequency of the periodic signal, 2/T, where T is the period. Frequencies nlo, where n is an integer, are the harmonics. This infinite sum is an exact representation of the original function. If we use a finite sum, where n goes from -N to N, we will get an approximation "X-(t)". In this problem we will calculate and plot the Fourier series representation of a...
Matlab Problem: please use matlab format, thank you in
advance!!
Problem 6 (1 point. Instructor's Initials This is Problem 5.20 in the text, with the following corrections and additions: 1) There is an error in the formula for f(x). The correct formula is saies seroatmation dfs ea ee witn m 1,3. 1 2??? -sin 4 /A f(x) = Write a program that accepts as user input the number of terms in the sum. For example, if the user requests 3...
You are given a finite step function xt=-1 0<t<4 1 4<t<8. Hand calculate the FS coefficients of x(t) by assuming half- range expansion, for each case below. Modify the code below to approximate x(t) by cosine series only (This is even-half range expansion). Modify the below code and plot the approximation showing its steps changing by included number of FS terms in the approximation. Modify the code below to approximate x(t) by sine series only (This is odd-half range expansion).. Modify...
in C++
6. (20)The Fibonacci sequence is the series of integers 0, 1, 1,2, 3, 5, 8, 13, 21, 34, 55, 89.. 1 See the pattern? Each element in the series is the sum of the preceding two items. There is a recursive formula for calculating the nth number of the sequence (the oth number if Fib(0)-0): 8 Fib(N)-/N, if N 0 or 1 ifN> 1 Fib(N-2) Fib(N-1), a. b. c. Write a recursive version of the function Fibonacci. Write...
i BOX Number- " Parts reference Text CommentsHeader&Footer Links MATLAB Lab 8 This exercise was done previously for a full circle. Perform all the steps shown including the plot, but only for the function shown in part b). Objective: In calculus, integration allows us to find the area under a curve. Numerical methods exist which enable us to approximate the area An interesting approach is to randomly select points in an x-y plane and find the fraction of those points...
c++
U CHU PO J O ! Week 11 Homework-Functions X + /bbcswebdav/pid-2592362-dt-content-rid-39864984_1/courses/CSC-170-03-191/CSC%20170%20Program%205%20%26% CSC 170 - 03 Fall 2019 Program 5 & 6 You are required to write a program which reads five test scores and computes and prints the sum and average of these test scores. Note: This program should not use arrays. You are required to produce two versions of this program Version 1 Program 5 In the first version you must use the following: 1. Avoid function...