answersLogoWhite

0

tn = t1+(n-1)d -- for arithmetic

tn = t1rn-1 -- for geometric

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

How is nusselt number related to prandtl number in heat transfer?

The Nusselt number is proportional to the Prandtl number to the nth power, where n is a positive number less than one.


How do you write a java program to update the total amoutn in the bill at nth position with the given billno?

To update the total amount in a bill at the nth position with a given bill number in Java, you can use an array or a list to store the bills. First, iterate through the list to find the bill with the specified bill number. Once found, update the total amount at the nth position using the index. Here's a simple example: class Bill { int billNo; double totalAmount; // Constructor, getters, and setters omitted for brevity } // Assuming bills is a List<Bill> for (Bill bill : bills) { if (bill.getBillNo() == targetBillNo) { bill.setTotalAmount(newTotalAmount); break; // Exit loop once the bill is found and updated } } Make sure to handle cases where the bill number is not found or the nth position is out of bounds.


What would you typically find in a caption?

A brief description allowing the reader to identify the image and its significance, and a figure number correlating to the sequence of images in the book


Find Nth harmonic number using recursion?

Type this into Dev-C++ and run it. You will be able to find whatever harmonic number you want. This may not be perfect because I wrote it in about 10 minutes, but I think it works just fine. Good luck!#include double seq(double x);double seq(double x) {double temp=0;if (x==0)return 0;return 1/x + seq(x-1);}int main() {double x, y;while (x != 0) {printf("Please enter a number:\n");scanf("%lf", &x);y = seq(x);printf("The sequence of that number is: %lf\n", y);}system("PAUSE");return 0;}


How do you compute the nth Fibonacci number using VBScript?

<html> <body> <script type="text/vbscript"> Dim a, b, c, n, nth a = 0 b = 1 n = Cint(InputBox("Enter the value of ""n""")) For nth = 1 to n Step 1 Document.Write(b&"<br/>") c = a + b a = b b = c Next </script> </body> </html>

Related Questions

What is the nth term of 1 2 4 8?

Each number in this sequence is twice the previous number. The nth. term is 2n-1.Each number in this sequence is twice the previous number. The nth. term is 2n-1.Each number in this sequence is twice the previous number. The nth. term is 2n-1.Each number in this sequence is twice the previous number. The nth. term is 2n-1.


What is the nest number in the sequence 1471116?

Three or more terms of a sequence are needed in order to find its nth term.


What is the nth term of 37111519?

The single number 37111519 does not comprise a sequence.A single number such as 37111519 does not constitute a sequence and so there can be no nth term.


What is the nth term for -3052?

A single number, such as -3052 cannot define a sequence and, without a sequence you cannot have an nth term.


What is the nth term of sequence 392781243...?

The question does not contain a sequence but a single large number whose digits are the digits of the sequence, 3n run together. There is only one number, not a sequence, so there is no nth term.


How do you calculate the nth term in the Fibonacci sequence using C?

what? Assuming you wanted an algorithm to find the nth number in the Fibonacci sequence: double Fib(int i) { double x = 1; double y = 1; if (i


What is the nth term if the sequence is 44444?

A single number, such as 44444, does not define a sequence.


What is the nth term of the sequence 626126626?

A single number, such as 626126626 does not define a sequence.


What is the nth term for the sequence 235711?

A single number, such as 235711, does not constitute a sequence.


What is the nth sequence?

a nth term in a sequence is more easy then u think first find a sequence lets say like 1,5,9,13,17 all u do is find what you add to the number to get the next and to make sure its right all the way through just do the last one so this sequence is add 4 simple


What is the nth term of the sequence 4 8 12 16?

Given n and any number for the nth term, it is a simple matter to find a rule such that the above four numbers are the first four of a sequence and the given number in the nth position.However, the simple answer for simple questions is Un = 4n


What is the number sequence of 1 4 and 7?

The nth term of the sequence is 3n - 2.