<samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
<ul id="e4iaa"></ul>
<blockquote id="e4iaa"><tfoot id="e4iaa"></tfoot></blockquote>
    • <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp>
      <ul id="e4iaa"></ul>
      <samp id="e4iaa"><tbody id="e4iaa"></tbody></samp><ul id="e4iaa"></ul>
      <ul id="e4iaa"></ul>
      <th id="e4iaa"><menu id="e4iaa"></menu></th>

      代做COMPSCI 369、代寫Java/Python語言編程

      時間:2024-06-12  來源:  作者: 我要糾錯



      THE UNIVERSITY OF AUCKLAND
      FIRST SEMESTER, 2023
      COMPUTER SCIENCE
      Computational Methods in Interdisciplinary Science
      NOTE: This is a restricted book exam. You are allowed a single sheet of A4 paper with notes written
      on it.
      This exam has 16 questions, and it is worth 120 marks in total.
      There are 4 sections.
      Section A consists 4 short answer questions worth 30 marks in total.
      Section B consists 5 short answer questions worth 20 marks in total.
      Section C consists 4 short answer questions worth 32 marks in total.
      Section D consists 3 short answer questions worth 38 marks in total.
      Answer all questions
      The exam is worth 55% of the final grade
      Page 1 of 7COMPSCI 369
      Section A: Computational Biology, Numerical Integration &
      Game Theory
      Computational Game Theory
      1. In lectures we discussed David Chess’s paper ‘Simulating the evolution of behavior: the iterated
      prisoners’ dilemma problem’. In this paper, Chess reported on four phases in his model: “The Era
      of Exploitation,” “The Nadir,” “The Growth of Trust,” and “Equilibrium.”
      (a) Describe each of the four phases and their relation to each other. [4 marks]
      (b) Explain two reasons why it was necessary to use computational methods to study this model.
      [3 marks]
      Modelling Dynamical Systems
      2. The following equation specifies a discrete-time dynamical system. In this equation, α is a parameter.
      xt+1
      = α min(xt, 1 − xt)
      (a) When α < 1, there is a single fixed point. What is it? [1 mark]
      (b) When α = 1, there are an infinite number of fixed points. What are they? [2 marks]
      (c) What would be appropriate to use as labels for each axis of a bifurcation diagram of this
      system? [2 marks]
      (d) Write pseudocode for generating a bifurcation diagram for this system. [10 marks]
      3. Briefly describe the Euler and Runge-Kutta methods for numerical integration and explain the
      relationship between them. [4 marks]
      4. Identify a situation where Euler integration would be perfectly accurate and explain why this is the
      case. [4 marks]
      Page 2 of 7COMPSCI 369
      Section B: Sequence Alignment
      5. The partially completed F matrix for calculating the local alignment of the sequences GCT and
      TAACT is given below. The score matrix is given by s(a, b) = −2 when a 6= b and s(a, a) = 4.
      The linear gap penalty is d = −3.
      T C C A T
      0 0 0 0 0 0
      G 0 0 0 0 0 0
      C 0 0 4 4 1 u
      T 0 4 1 v w x
      (a) Complete the matrix by finding values for u, v, w and x and showing traceback pointers.
      [4 marks]
      (b) Give the score for the best local alignment of these two sequences and provide an alignment
      that has this score. [3 marks]
      6. What is the biological motivation for using an affine rather than a linear gap penalty? [2 marks]
      7. Computationally, how can one efficiently perform alignment with an affine gap penalty and what
      is the computational cost of doing so when compared to a linear gap? Use asymptotic notation as
      part of your answer. [4 marks]
      8. Describe the main barrier to finding an exact solution to the multiple alignment problem. Use
      asymptotic notation as part of your answer. [2 marks]
      9. Describe the main steps of the heuristic algorithm we discussed in lectures for solving the multiple
      alignment problem, including the use of neutral characters. (You do not need to give precise
      formulae for how the distances are calculated.) [5 marks]
      Page 3 of 7COMPSCI 369
      Section C: Simulation and HMMs
      10. What does it mean for a sequence of random variables X0, X1, X2, . . . to have the Markov property?
       Express your answer in plain English and in mathematical notation. [2 marks]
      11. You are given a method choice(x,prob), where the arrays x and prob are of equal length,
      and the sum of the elements of prob is 1. choice(x,prob) returns x[i] with probability
      prob[i].
      Write a pseudo-code method simHMM(a,e,L,s) that takes as input a transition matrix a, an
      emission matrix e, a length L and a start state s. It should return state and symbol sequences of
      length L with the state sequence starting in state s. Use integers corresponding to array indices to
      represent states and emissions. [6 marks]
      12. Given the method choice(x,prob) as defined in Question 11, write a pseudo-code method
      randwalk(k) that simulates a random walk of length k starting at 0 where steps of -1 and +1
      are equally likely. Assume the argument k is a positive integer. Your method should return an
      array of length k where walk[i] is the position of the random walk after i steps. Show how you
      can use this method to estimate the probability that the position of a random walker after 50 steps
      is more than 10 steps from its starting point. [5 marks]
      Page 4 of 7COMPSCI 369
      13. Consider an HMM with states A, B, C each of which emit symbols Q, R, S, T. The transitions are
      given by the following table which has omitted the transition probabilities into state C.
      The model starts in state A 60% of the time, state C 40% of the time and never in state B.
      The emission probabilities for the model are given by the following table.
      Q R S T
      A 0.4 0.2 0.15 0.15
      B 0.2 0.6 0.1 0.1
      C 0.05 0.2 0.2 0.55
      (a) Write down the values of the missing elements in the transition matrix. [2 marks]
      (b) Sketch a diagram of the HMM, showing all states, possible transitions and transition probabilities.
       Include the begin state but no end state. Do not include emission probabilities in the
      diagram. [3 marks]
      (c) Explain why the length of a run of Bs in a state sequence follows a geometric distribution and
      give the length of an average run of Bs. [3 marks]
      (d) What is the joint probability P(x, π) of the state sequence π = ABB and the symbol sequence
      x = QTR? Leave your answer as a product or sum of numbers. [3 marks]
      (e) Complete the entries i, j and k in the forward matrix below using the recursion fk(i + 1) =
      ek(xi+1)
      P
      l
      alkfl(xi). Remember to show your working.
      0 Q T
      0 1 0 0
      A 0 0.24 k
      B 0 i
      C 0 j
      [5 marks]
      (f) The forward algorithm is used to calculate P(x). When π = ABB and x =QRR, is P(x)
      greater than, less than, or equal to P(x, π)? Justify your answer. [3 marks]
      Page 5 of 7COMPSCI 369
      Section D: Trees
      14. Let the symmetric matrix
      specify the pairwise distances, Dij , between the four sequences x1, . . . , x4.
      (a) Construct a UPGMA tree from D showing your working. [5 marks]
      (b) Will UPGMA or neighbour-joining (or both or neither) reconstruct the correct tree in this
      case? Explain your answer. [2 marks]
      (c) Describe when you would use neighbour-joining and when you would use UPGMA. [3 marks]
      15. Consider the four aligned sequences, W,X,Y, and Z:
      12345
      W: CCGTT
      X: GCAAT
      Y: CCATT
      Z: GAGAT
      (a) Explain what parsimony informative means, and identify the parsimony informative sites in
      the alignment. [2 marks]
      (b) By calculating the parsimony score for each possible tree topology for these four taxa, find
      the maximum parsimony tree. [5 marks]
      (c) Demonstrate (for example, on a single branch in a one of your trees) how ancestral reconstructions
      can be used to estimate branch length on the maximum parsimony tree. [4 marks]
      (d) Describe two significant drawbacks of the parsimony method. [3 marks]
      Page 6 of 7COMPSCI 369
      16. (a) Why do we rely on heuristic methods to find a maximum likelihood tree? Describe one such
      heuristic and explain whether this heuristic will typically find the tree that maximises the
      likelihood. [4 marks]
      (b) Given mutation rate parameter µ and normalised rate matrix Q, how do you calculate the
      probability that a C mutates to a T along a lineage of length t = 3? (Recall we denote, for
      example, the (A, A)th entry of a matrix B by BAA.) [3 marks]
      (c) Let X and Y be sequences of length L. How can you use the calculation in part (b) to
      calculate the probability that X mutates into Y over a lineage of length t = 3? Explain any
      assumptions you are making. [2 marks]
      (d) In order to efficiently calculate the likelihood of the tree, what assumption do we make about
      the mutation process on different lineages? [2 marks]
      (e) In parsimony and distance based methods, sites that are constant across all sequences are
      not informative about the tree. Explain whether or not the same applies to likelihood based
      methods. [3 marks]
      請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp













       

      標簽:

      掃一掃在手機打開當前頁
    • 上一篇:ICS3U編程代寫、代做Java/Python程序設計
    • 下一篇:代寫股票公式 代寫選股公式 通達新尾盤掘金公式
    • 無相關信息
      昆明生活資訊

      昆明圖文信息
      蝴蝶泉(4A)-大理旅游
      蝴蝶泉(4A)-大理旅游
      油炸竹蟲
      油炸竹蟲
      酸筍煮魚(雞)
      酸筍煮魚(雞)
      竹筒飯
      竹筒飯
      香茅草烤魚
      香茅草烤魚
      檸檬烤魚
      檸檬烤魚
      昆明西山國家級風景名勝區
      昆明西山國家級風景名勝區
      昆明旅游索道攻略
      昆明旅游索道攻略
    • 幣安app官網下載 幣安app官網下載

      關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

      Copyright © 2023 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
      ICP備06013414號-3 公安備 42010502001045

      主站蜘蛛池模板: 亚洲中文字幕无码专区| 久久国产精品无码网站| 无码粉嫩小泬无套在线观看| 亚洲精品久久无码av片俺去也 | 好爽毛片一区二区三区四无码三飞| 精品久久久久久久无码久中文字幕| 精品无码久久久久久久动漫| 精品无码AV一区二区三区不卡| 一本一道中文字幕无码东京热| 久久久亚洲精品无码| 性无码专区一色吊丝中文字幕 | 久久国产亚洲精品无码| 惠民福利中文字幕人妻无码乱精品| 亚洲精品偷拍无码不卡av| 亚洲AV综合色区无码另类小说| 性虎精品无码AV导航| 99无码人妻一区二区三区免费| 日韩精品无码免费专区午夜| 亚洲成a∧人片在线观看无码| 色噜噜综合亚洲av中文无码 | 熟妇人妻无码xxx视频| 人妻系列无码专区无码中出| 国产精品多人p群无码 | 午夜福利无码一区二区| 久久亚洲精品成人av无码网站| 亚洲午夜福利AV一区二区无码| 精品一区二区三区无码免费直播| 亚洲av无码专区在线电影天堂| 亚洲AV人无码综合在线观看| 亚洲日韩乱码中文无码蜜桃臀网站| 成人免费无码大片a毛片软件 | av无码a在线观看| 无码日韩人妻AV一区二区三区| 亚洲成a人无码亚洲成www牛牛| 人妻少妇伦在线无码专区视频| 无码精品久久久天天影视| 久久无码高潮喷水| 少妇爆乳无码专区| 亚洲免费无码在线| 中文字幕无码无码专区| 无码一区二区三区免费|