1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Klio2033 [76]
3 years ago
5

Prove, using mathematical induction, that the given property of the Fibonacci numbers is true [F(n+1)]2 =[F(n)]2+F(n−1)∗F(n+2) f

ora????????n≥2 Where Fibonacci numbers are defined by the recurrence relation F(1) = 1 F(2) = 1 F(n) = F(n − 1) + F(n − 2)
Computers and Technology
1 answer:
mixas84 [53]3 years ago
4 0

Answer:

We have proven that the property of the Fibonacci sequence [F(n+1)]^2 =[F(n)]^2+F(n-1)F(n+2) holds by Mathematical Induction.

Explanation:

For n≥2. We prove that it holds for n=2, Assume that it holds for n=k and prove that it holds for n=k+1

F(1)=1

F(2) = 1

F(3) = F(3 − 1) + F(3 − 2)= F(2) + F(1)=1+1=2

F(4) = F(4 − 1) + F(4 − 2)= F(3) + F(2)=2+1=3

In [F(n+1)]^2 =[F(n)]^2+F(n-1)F(n+2)

We prove it is true for n=2.

When n=2

L.H.S: [F(n+1)]^2 = [F(2+1)]^2 = [F(3)]^2 = 2^2 =4\\R.H.S: [F(n)]^2+F(n-1)F(n+2)  \\=[F(2)]^2+F(2-1)F(2+2)\\= [F(2)]^2+F(1)F(4)\\=1^2+1*3=1+3=4

We assume it is true for n=k and prove that it holds for n=k+1.

When n=k+1 in [F(n+1)]^2 =[F(n)]^2+F(n-1)F(n+2)

Substituting n=k+1 in the LHS: [F(n+1)]^2 and applying: F(k+2)=F(k+1)+F(k)

LHS: [F(k+2)]^2=[F(k+1)+F(k)]^2\\= [F(k+1)]^2+2F(k+1)F(k)+[F(k)]^2\\=[F(k+1)]^2+F(k)[2F(k+1)+F(k)]\\=[F(k+1)]^2+F(k)[F(k+1)+F(k+1)+F(k)]\\=[F(k+1)]^2+F(k)[F(k+1)+F(k+2)]\\=[F(k+1)]^2+F(k)F(k+3)

Substituting n=k+1 in the RHS :[F(n)]^2+F(n-1)F(n+2)

RHS=[F(K+1)]^2+F(K+1-1)F(K+1+2)=[F(k+1)]^2+F(k)F(k+3)

Since the LHS=RHS

Therefore, the property is true.

FOR REFERENCE

When n=k in [F(n+1)]^2 =[F(n)]^2+F(n-1)F(n+2)

Substituting n=k in the LHS: [F(n+1)]^2 and applying: F(k+1)=F(k)+F(k-1)

LHS: [F(k+1)]^2=[F(k)+F(k-1)]^2\\= [F(k)]^2+2F(k)F(k-1)+[F(k-1)]^2\\=[F(k)]^2+F(k-1)[2F(k)+F(k-1)]\\=[F(k)]^2+F(k-1)[F(k)+F(k)+F(k-1)]\\=[F(k)]^2+F(k-1)[F(k)+F(k+1)]\\=[F(k)]^2+F(k-1)F(k+2)\\Substituting \: n=k \:in\: th\:e RHS :[F(n)]^2+F(n-1)F(n+2)

RHS=[F(K)]^2+F(K-1)F(K+2)

LHS=RHS

You might be interested in
Consider the following scenario below and recommend a solution.
sammy [17]

your account has enabled profile pictures for your users, you can manage all profile pictures for your account. Profile pictures are public and automatically approved when users upload an image in their settings. Using profile pictures can make it easier to see the users in your account and managing them gives you the ability to keep the pictures appropriate.

If Gravatars are enabled for an institution in account settings, and a user has a Gravatar but chooses not to upload a profile picture, the Gravatar will display for the user's profile picture.

If a student views another student's user details in a course and reports a profile picture as inappropriate, you can review those profile pictures and approve, lock, or delete the picture. In the courses, instructors can remove profile pictures completely from a user's details page.

5 0
2 years ago
It is a good idea to include your teacher’s name on a title page.
kkurt [141]
I usually include my teachers name in the upper right hand corner along with the date my name and the subject.
6 0
3 years ago
Read 2 more answers
Which of the following can be used to locate data in a particular column?
dangina [55]

Answer:

A. VLOOKUP

Explanation:

VLOOKUP is an Excel function to look up data in a table organized vertically. VLOOKUP supports approximate and exact matching, and wildcards (* ?) for partial matches. Lookup values must appear in the first column of the table passed into VLOOKUP.

Purpose 

Lookup a value in a table by matching on the first column

Return value 

The matched value from a table.

Syntax 

=VLOOKUP (value, table, col_index, [range_lookup])

Arguments 

value - The value to look for in the first column of a table.

table - The table from which to retrieve a value.

col_index - The column in the table from which to retrieve a value.

range_lookup - [optional] TRUE = approximate match (default). FALSE = exact match.

4 0
2 years ago
Write a program that asks the user for the number of males and the number of females registered in a class. The program should d
Bond [772]

Answer:

import java.util.Scanner;

public class PercentagePopulation {

public static void main(String[] args) {

 // 1. Create an object of the Scanner class

 // This will allow for user's inputs

 Scanner input = new Scanner(System.in);

 // 2. Create a prompt asking the user to enter the number of males

 System.out.println("Please enter the number of males");

 // 3. Receive the number entered by the user and store in an int

 // variable called  number_of_males.

 int number_of_males = input.nextInt();

 // 4. Create a prompt asking the user to enter the number of

               // females

 System.out.println("Please enter the number of females");

 // 5. Receive the number entered by the user and store in an int

 // variable  called, number_of_females

 int number_of_females = input.nextInt();

 // 6. Find the sum of the number of males and females

 // Store the result in an int variable called total.

 int total = number_of_males + number_of_females;

 // 7. Find the percentage of males by using the appropriate

 // formula.  Do a type-casting to allow for division in floating point

               // representation by prepending the number_of_males by (double)

 double percentagemales = (double) number_of_males / total * 100.0;

 // 8. Find the percentage of females by using the appropriate

 // formula.  Do a type casting to allow for division in floating point

               // representation by prepending the number_of_males by (double)

 double percentagefemales = (double) number_of_females / total * 100.0;

 // 9. Print out the results

 System.out.println("Percentage males : " + percentagemales + "%");

 System.out.println("Percentage females : " + percentagefemales + "%");

}

}

Explanation:

Please go through the comments in the code to give an explanation of the program. The source code file has also been added to this response. Please download it and go through it.

Download java
4 0
3 years ago
In today's digital marketplace, the line between retailer and distributor has become less distinct.
jenyasd209 [6]

Answer:

The answer you're looking for is True - The line between retailer and distributor has become less distinct.

Explanation:

5 0
3 years ago
Other questions:
  • ‘The increased availability of mobile digital devices has had a positive impact on how young people use their free time’. Make a
    14·2 answers
  • What is the full form of the acronym WWW?
    13·2 answers
  • Which type of electronic community displays discussions on different topics in threads?
    8·1 answer
  • If Tracy starts on the left edge of the canvas and moves forward 50 pixels, how many times will this code need to be repeated to
    5·1 answer
  • The staff of the ___________________ will need to enter, maintain, and retrieve data from electronic health records within a hos
    9·1 answer
  • Match the item to the type.
    11·1 answer
  • You started writing a paper yesterday. You worked on it again today. After a few hours, you realized that you have introduced so
    15·2 answers
  • What are the steps to customize a slide show?
    10·2 answers
  • Why do designers of smartphones hide computer processing details from
    14·2 answers
  • An operating system is defined as hardware that converts software into a useful form for applications.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!