VIPSolutions logo ✨ VIPSolutions

1. Use Excel to compute the 2-D coordinates of points R, S and T using this data: A network survey was conducted for the project shown in Figure 1. Station Q has control coordinates of (1000.00, 1000.00) and the azimuth of line QR is 0°06°24.5” with an estimated error of +-0.001". ROY ol C { A Nn /\ x \ NU / A opr Figure 1. Horizontal Network The observations and their estimated errors are listed below. [Occupied,i | sighted, [Distanceij(fy [sq | CT 1 Rs [moon [oom | [s ~~ Jr [713 0.025 [rT To ~~ [ree4524 0.026 [@ Is ~~ faisse2 foo» | RJT [226603 0.030 [Backsight,b [instrument,i [Foresightf [Angle [sy | [R Jo ~~ [s ~~ [seass07" [a0 | [s Jo Jv [aae12a [a0 | [fT Jo [rR [oases [aa | I SO ES 57 AN [Rs Jv [257%%s [sv Jo [ous [a5 | [s Im Jr Jarssi0 sn [a leomr [as | [@ [ss [rR ~~ Tsi08d50 [Is Jo [sige [a0] [Jv [rR lae1s020" Jao | (Rr Js [340057 CS I 7 XE Initial approximations for station coordinates are R: (1003.07, 2640.00) S: (2323.07,2638.46) T: (2661.74, 1096.08) Adjust this survey by the method of least squares. 2. Use the partial derivatives below to linearize the observation equations. Use linear and radian units. 3. Compute the residuals of the distance, angle and azimuth observations. 4. Submit the estimated coordinates for the unknown points along with the residuals, estimated standard deviations of the adjusted coordinates of the unknown points and adjusted observations.

Question:

Uploaded Image1. Use Excel to compute the 2-D coordinates of points R, S and T using this data: A network survey was conducted for the project shown in Figure 1. Station Q has control coordinates of (1000.00, 1000.00) and the azimuth of line QR is 0°06°24.5” with an estimated error of +-0.001". ROY ol C { A Nn /\ x \ NU / A opr Figure 1. Horizontal Network The observations and their estimated errors are listed below. [Occupied,i | sighted, [Distanceij(fy [sq | CT 1 Rs [moon [oom | [s ~~ Jr [713 0.025 [rT To ~~ [ree4524 0.026 [@ Is ~~ faisse2 foo» | RJT [226603 0.030 [Backsight,b [instrument,i [Foresightf [Angle [sy | [R Jo ~~ [s ~~ [seass07" [a0 | [s Jo Jv [aae12a [a0 | [fT Jo [rR [oases [aa | I SO ES 57 AN [Rs Jv [257%%s [sv Jo [ous [a5 | [s Im Jr Jarssi0 sn [a leomr [as | [@ [ss [rR ~~ Tsi08d50 [Is Jo [sige [a0] [Jv [rR lae1s020" Jao | (Rr Js [340057 CS I 7 XE Initial approximations for station coordinates are R: (1003.07, 2640.00) S: (2323.07,2638.46) T: (2661.74, 1096.08) Adjust this survey by the method of least squares. 2. Use the partial derivatives below to linearize the observation equations. Use linear and radian units. 3. Compute the residuals of the distance, angle and azimuth observations. 4. Submit the estimated coordinates for the unknown points along with the residuals, estimated standard deviations of the adjusted coordinates of the unknown points and adjusted observations.

This is AI generated Response.
Asked by: Test User 100328
Created at: 2025-05-19 13:23:01

Final Answer:

Rendered Raw Text
Did you like this answer?
Here's how you can approach solving this network adjustment problem using Excel as requested: --- ### **Step 1: Input Data in Excel** #### **Coordinates and Azimuth** - Q = (1000.00, 1000.00) - Azimuth QR = 0°06'24.5" = 0.1068° = 0.001864 radians #### **Distance Observations Table** Create columns for: - From - To - Distance (ft) - Std. Dev (S ft) #### **Angle Observations Table** Create columns for: - Back sight - Instrument - Fore sight - Angle (deg, min, sec) - Std. Dev (S ") #### **Azimuth Observation Table** Create columns for: - From - To - Azimuth (deg, min, sec) - Std. Dev (S ") --- ### **Step 2: Approximate Coordinates** Input the initial approximations for: - R: (1003.07, 2640.00) - S: (2323.07, 2638.46) - T: (2661.74, 1096.08) --- ### **Step 3: Set Up Observation Equations** #### **Distance Equation** For distance between (xi, yi) and (xj, yj): \[ l_{ij} = \sqrt{(x_j - x_i)^2 + (y_j - y_i)^2} \] #### **Angle Equation** For angle at station i between points j and k: \[ \theta_{jik} = \arctan\left(\frac{y_k - y_i}{x_k - x_i}\right) - \arctan\left(\frac{y_j - y_i}{x_j - x_i}\right) \] #### **Azimuth Equation** \[ Az_{ij} = \arctan\left(\frac{x_j - x_i}{y_j - y_i}\right) \] --- ### **Step 4: Linearize the Equations** Use Taylor series expansions to linearize the equations around your initial approximations. Use partial derivatives to relate corrections in coordinates to corrections in observed values. --- ### **Step 5: Formulate Least Squares Adjustment (in Excel)** 1. **Design Matrix (A):** Use partial derivatives as coefficients for corrections to X and Y of unknowns. 2. **Observation Vector (L):** Differences between observed and computed values. 3. **Weight Matrix (P):** Inverse of variances (from given standard deviations). 4. **Normal Equation:** \[ (A^T P A) \Delta X = A^T P L \] 5. **Solve for Corrections (\(\Delta X\)):** Use Excel’s matrix functions (e.g., `MMULT`, `MINVERSE`, `TRANSPOSE`). --- ### **Step 6: Iteratively Update Coordinates** - Update the approximated coordinates with the computed corrections. - Recompute the observation equations with updated coordinates. - Repeat until corrections are sufficiently small. --- ### **Step 7: Compute Residuals** \[ v = L - A \Delta X \] --- ### **Step 8: Output Results** - Final coordinates for R, S, and T - Residuals for each observation - Standard deviations (from the covariance matrix, \( (A^T P A)^{-1} \)) - Adjusted observations --- ## **Excel Implementation Tips** - **Use separate sheets** for observations, calculations, and results. - **Partial derivatives**: Calculate these in helper cells for each equation. - **Matrix operations**: Use named ranges and `MMULT`, `MINVERSE` to solve normal equations. --- ## **What to Submit** 1. Final adjusted coordinates for R, S, T. 2. Table of residuals for each observation (distance, angle, azimuth). 3. Standard deviations of adjusted coordinates. 4. Standard deviations of adjusted observations. --- ### **If you need a sample Excel structure or formulas for a specific part, let me know! I can provide an example for setting up matrices or the partial derivatives.** --- **Summary Table Example (for submission):** | Point | X (ft) | Y (ft) | Std. Dev X | Std. Dev Y | |-------|----------|----------|------------|------------| | R | xxxx.xx | xxxx.xx | xx.xx | xx.xx | | S | xxxx.xx | xxxx.xx | xx.xx | xx.xx | | T | xxxx.xx | xxxx.xx | xx.xx | xx.xx | | Observation | Residual | |-------------|----------| | Q-R | xx.xx | | ... | ... | --- **Let me know if you want a sample Excel file template or step-by-step formulas!**

📢 Instructions:

  • Ask anything relatd to above question only.
  • For new Question goto :

Study Help, Fast Answers

VIPSolutions focuses on clear, step‑by‑step explanations so you can learn quickly. Whether you need an AI‑generated walkthrough or a short hint to get unstuck, each solution is organized for fast reading and easy review later.

Search similar questions, compare approaches, and bookmark the best answers for revision. Our goal is simple: quick, reliable study help that feels natural—not noisy.